0

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?

1 Answer 1

2

No, there is nothing like this in GraphicsMagick. If you are willing to write a script using one of the scripting extensions, or write a C/C++ program using the GraphicsMagick library, then anything becomes possible.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .