A command will only work on newest version of imagemagick.
Posted: 2007-11-11T06:00:00-07:00
I got this command:
It rotates an image and copies it over another image. Anyone got a command that will do the trick, even with older versions of imagemagick?
(I'm running the command with exec through PHP)
EDIT:
In older versions img1.tmp won't be copied over img2.tmp.
EDIT2:
It works on 6.3.5 and not on 6.2.2
Code: Select all
composite -compose atop -geometry 200x200+10-10 "tmp/img1.tmp" -matte -background none -rotate 67 "tmp/img2.tmp" "tmp/img3.tmp"
(I'm running the command with exec through PHP)
EDIT:
In older versions img1.tmp won't be copied over img2.tmp.
EDIT2:
It works on 6.3.5 and not on 6.2.2