Is it possible to crop equally sized tiles using GraphicsMagick, similar to ImageMagick's crop "@" modifier?
convert montage.gif -crop 5x1@ +repage +adjoin montage_%d.gif
Is it possible to use GraphicsMagick's crop "%" modifier, if the height of the image dimensions are constant?
Sample image directly from the ImageMagick manual:
https://legacy.imagemagick.org/Usage/crop/montage.gif
I would like to divide the sample image into 5 equal tiles, as shown in the ImageMagick manual.