im trying to combine 2 images, resizing the 1st and the output...
i got close enough but not quite right
Code: Select all
composite ( -gravity center -geometry +0+0 -resize 80x80 charge.png ) ( full.png ) out.png
this will resize the overlay charge.png but not the output...
when i try this
Code: Select all
composite ( -gravity center -geometry +0+0 -resize 80x80 charge.png ) ( full.png ) -resize 48x48 out.png
it reszie but the ratio of the overlay get messed up....
the overlay appears much bigger then it should,
i know i could have a 2nd line to do the resizing of the output which would solve the problem,
but i much prefer to have it in the one command if possible