Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/image-processing/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image processing 从Adobe Illustrator文件创建缩略图?_Image Processing - Fatal编程技术网

Image processing 从Adobe Illustrator文件创建缩略图?

Image processing 从Adobe Illustrator文件创建缩略图?,image-processing,Image Processing,有人知道如何在不使用Illustrator的情况下从Adobe Illustrator文件创建缩略图吗?我有一个基于php/linux的应用程序,我想这样做 -Dave如果您可以将其保存为PDF、PS或EPS格式,则您可以使用或之类的方式对其进行操作 编辑: 我认为您实际上也可以将ImageMagick与*.ai文件一起使用。默认情况下,Adobe Illustrator将文件保存为与PDF兼容的文件。除非文件以奇怪的方式保存,否则您应该能够直接使用ImageMagick生成缩略图。例如: co

有人知道如何在不使用Illustrator的情况下从Adobe Illustrator文件创建缩略图吗?我有一个基于php/linux的应用程序,我想这样做


-Dave

如果您可以将其保存为PDF、PS或EPS格式,则您可以使用或之类的方式对其进行操作

编辑:


我认为您实际上也可以将ImageMagick与*.ai文件一起使用。

默认情况下,Adobe Illustrator将文件保存为与PDF兼容的文件。除非文件以奇怪的方式保存,否则您应该能够直接使用ImageMagick生成缩略图。例如:

convert file.ai -thumbnail 250x250 -unsharp 0x.5  thumbnail.png
注意:如果文件有多个艺术板(被解释为PDF格式的页面),它将生成多个文件,或者如果保存为GIF,则生成动画GIF