I like to process the comoposite Command in PHP with shell_exec: But these dont work
/usr/bin/convert end1.jpg -composite pen.png -gravity center.
What's wrong?
The Composite command does not work.
Re: The Composite command does not work.
You didn't specify a destination image.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: The Composite command does not work.
Correct syntax should be
convert backgroundimage overlayimage -gravity center -composite resultimage
see
http://www.imagemagick.org/Usage/compose/#compose
convert backgroundimage overlayimage -gravity center -composite resultimage
see
http://www.imagemagick.org/Usage/compose/#compose