composite -gravity not working

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
DV4

composite -gravity not working

Post by DV4 »

Basic question - I'm trying to add curved corners to an image but it refuses to work.

I'm using

Code: Select all

composite -gravity SouthEast se_corner.gif base.gif base1.gif
and so on for the other 3 corners.

I am runnning resize and compose commands which work fine but my corner code does not seem to effect the image at all.

Any suggestions would be most helpful and much appreciated.

Thanks,

Rob
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

We tried your command with the latest ImageMagick release, 6.2.7-0, and it worked as expected.
DV4

Post by DV4 »

I working on 6.2.4

I'll upgrade and try again.

Thanks for looking into it.

In anycase I implemented a workaround using

Code: Select all

/usr/bin/composite -compose atop -geometry
which works fine
Post Reply