I used the following code to process a webcam-picture (in.jpg), unsharp some area (defined in grayscale-file unsharpmask.png) and add a stamp.
- load in.jpg
- blur this file
- load in.jpg as seperate layer
- apply transparency mask
- compose
- add stamp
- compose again and write to out.jpg
I used the following command to do this with ImageMagick:
convert in.jpg -blur 0x8 -compose over in.jpg unsharpmask.png -composite -compose over stamp.png -gravity SouthWest -composite -quality 90 out.jpg
But on GraphicsMagick it fails as the "-composite" option is missing,..
How can I do that with GraphicsMagick? Thanks in advance!