I need to allow for scaling a user uploaded logo to different sizes for different formats, are there any libraries (included or extra) that allow for the procesing of EPS files or high res artwork for this purpose?

link|improve this question
what do you call "processing"? – Your Common Sense May 19 '10 at 17:13
1  
I was under the impression ImageMagick could handle this. – Tom May 19 '10 at 19:41
As Tom says, ImageMagick can do this - either via the CLI tools or the PHP extension. – Raise May 19 '10 at 20:24
feedback

1 Answer

If you've built PHP with ext/java and can deal with SVG, PEAR's XML_svg2image is an interface to Apache Batik's rasterizer. It's a little abandoned though, and has been collecting dust since 2002.

Batik itself is scriptable though, so automating conversion via command-line or external process shouldn't be too hairy if you don't want to / can't recompile PHP or deal with dead code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.