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

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/svg/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 是否可以像imagemagick上的photoshop那样拥有多个图层_Image Processing_Svg_Imagemagick - Fatal编程技术网

Image processing 是否可以像imagemagick上的photoshop那样拥有多个图层

Image processing 是否可以像imagemagick上的photoshop那样拥有多个图层,image-processing,svg,imagemagick,Image Processing,Svg,Imagemagick,将在AI上打开的eps文件。过程是,我将使用Imagemagick将所有图像(.svg、.tif、.png、.jpg)组合成一个.eps格式的文件。我做了一个测试,结果很好,但这并不是我想要的。当你打开一个AI并在那里嵌入一些图像时,你实际上可以独立地拖动这些图像,就像它们在艺术板上被视为单独的对象一样。在我的测试结果中,Imagemagick似乎只创建了一个图像。这些图像彼此相连 伙计们帮我做这件事或者启发我对这里的理解。希望这是可能的 我将此代码用于imagemagick: montage

将在AI上打开的eps文件。过程是,我将使用Imagemagick将所有图像(.svg、.tif、.png、.jpg)组合成一个.eps格式的文件。我做了一个测试,结果很好,但这并不是我想要的。当你打开一个AI并在那里嵌入一些图像时,你实际上可以独立地拖动这些图像,就像它们在艺术板上被视为单独的对象一样。在我的测试结果中,Imagemagick似乎只创建了一个图像。这些图像彼此相连

伙计们帮我做这件事或者启发我对这里的理解。希望这是可能的

我将此代码用于imagemagick:

montage RSVG:d.svg -geometry +5+10 c.png -geometry +200+10 -tile x1  eps2:output.eps

我在imagemagick上找到了一段对话

它帮助我使用Imagemagick创建带有图层的psd。:)为了与大家分享,以下是我的代码:

convert                  \
  j.png                  \
  b.svg                  \
  gradiant.png           \
    \(                   \
       -clone 0          \
       -clone 1          \
       -clone 2          \
       -background white \
       -mosaic           \
    \)                   \
  -alpha set             \
  -reverse               \
  -colorspace CMYK       \
  test2-mosaic.psd

但问题是,我需要将其输出为PDF格式,我尝试将其输出为.PDF格式,这很好:我可以在AdobeAcrobat上打开它;但是,我无法在Adobe Illustrator上打开它。我想这是我必须发布的另一个问题。

请参阅感谢链接。:)