Tiling images onto a canvas

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
Sargis

Tiling images onto a canvas

Post by Sargis »

Hi,

Is there any way to tile images into a canvas while preserving their dimensions and border sizes, assuming they are all of different widths but the same height? Or is the only way to output tiled images in one file to use

Code: Select all

MagickWand *MagickMontageImage(MagickWand *wand,
    const DrawingWand drawing_wand,const char *tile_geometry,
    const char *thumbnail_geometry,const MontageMode mode,
    const char *frame)


Can anyone point me to examples or perhaps functions that would do this task? Any help would be greatly appreciated.

Thanks,

Sargis
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Tiling images onto a canvas

Post by anthony »

You can see what is posible with montage in the command line examples
http://www.imagemagick.org/Usage/montage/

Anything more you may need expand more clearly or given an example of the desired output.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply