How to replicate these montage settings via the API?

The MagickWand interface is a new high-level C API interface to ImageMagick core methods. We discourage the use of the core methods and encourage the use of this API instead. Post MagickWand questions, bug reports, and suggestions to this forum.
Post Reply
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: How to replicate these montage settings via the API?

Post by el_supremo »

The MagickSetGravity function in MagickWand affects a magickwand instead of a drawingwand. It is declared in C as:

Code: Select all

MagickBooleanType MagickSetGravity(MagickWand *wand,const GravityType type)
I don't know if it is accessible from Python but if it is it might help.

Pete
Post Reply