Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create thumbnail from Adobe Illustrator file?

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

like image 673
Dave Avatar asked Nov 05 '09 04:11

Dave


1 Answers

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.

like image 124
Jason Avatar answered Nov 15 '22 09:11

Jason