On Mon, 02 Feb 2009 07:59:25 -0600
[email protected] wrote:

| convert rose: -gravity North -background Orange -splice 0x13 \
|     -annotate 0 "Rose" x:

If you really want to center append a label image, rather than annotate
it, this was the center append technique you could use.

  convert rose:  pattern:checkerboard   granite: \
          -background White  -gravity center  -extent 200x0 \
          -append -trim +repage x:

And we have three centered appended images, and should work with any IM
later than version 6.3.2.

Note the value 200 must be larger than the widest image, and it assumes
that -trim will not over-trim the largest appended image (due to it
using a similar color)

If you know how wide the widest image is, then you can adjust the
-extent size to match, and remove the -trim to avoid problems.


For an even earlier versions, the -extent can be replaced with
either a  'border, crop'  technique,   OR  a 'veiwport crop, flatten'
technique, however the -extent technique above is probably the simplest
alternative.



  Anthony Thyssen ( System Programmer )    <[email protected]>
 -----------------------------------------------------------------------------
        Backup is irrelevant, your C drive will be assimilated
 -----------------------------------------------------------------------------
     Anthony's Home is his Castle     http://www.cit.gu.edu.au/~anthony/
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to