I cant get an answer for this.
I want to have three resized output images.
Code: Select all
Convert Input.png "DO STUFF" -flatten OriginalOutput.png -resize 50% MiddleSizedOutput.png -resize 20% ThumbnailOutput.png.
Thx for help.
paul
Code: Select all
Convert Input.png "DO STUFF" -flatten OriginalOutput.png -resize 50% MiddleSizedOutput.png -resize 20% ThumbnailOutput.png.
Code: Select all
convert input.jpg ( +clone -thumbnail x480 -write 480_wide.jpg +delete ) ( +clone -thumbnail x250 -write 250_wide.jpg +delete ) ( +clone -thumbnail x100 -write 100_wide.jpg +delete ) -thumbnail 64x64! thumbnail.jpg