Is there a GraphicsMagick equivalent to ImageMagick's image stack?
Posted
by
naivedeveloper
on Super User
See other posts from Super User
or by naivedeveloper
Published on 2012-10-22T22:20:06Z
Indexed on
2012/10/22
23:05 UTC
Read the original article
Hit count: 169
imagemagick
|graphicsmagick
Although GraphicsMagick is a fork of ImageMagick, there are dissimilarities between the two, namely in the support of image stacking in ImageMagick, but not in GraphicsMagick. Taken from the ImageMagick documentation:
convert wand.gif \( wizard.gif -rotate 30 \) +append images.gif
In this example, the rotate
command is applied only to the wizard.gif
resource. My question is: Is there an equivalent to image stacking in GraphicsMagick?
© Super User or respective owner