vote up 1 vote down star

Does anybody know how to create a thumbnail from an Adobe Illustrator file without using Illustrator? I have a php/linux based application and I'd like to do so.

-Dave

flag

79% accept rate

2 Answers

vote up 1 vote down check

By default, Adobe Illustrator saves files as PDF compatible. Unless the file was saved in a strange way, you should be able to use ImageMagick directly to generate a thumbnail. For example:

convert file.ai -thumbnail 250x250 -unsharp 0x.5  thumbnail.png

Note: If the file has multiple artboards (which are interpreted as pages as a PDF), it will generate multiple files or, if saved as a GIF, an animated GIF.

link|flag
vote up 0 vote down

If you can save it in PDF, PS, or EPS format you may be able to manipulate it in things like ImageMagick or Ghostscript.

EDIT:

I think you can actually use ImageMagick's convert with *.ai files as well.

link|flag

Your Answer

Get an OpenID
or

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