They are all identical canvas size with transparent background..
I need to change the canvas width to 200% & fit the viewable image to new canvas size..
Here is my mission:
a.. create a canvas with transparent background & the correct aspect ratio
b.. apply that background to all .png's scaling viewable image to fit
I can create my Template png with something like this:
Code: Select all
convert -size 440x132 xc:none /path/to/images/Background.png
Code: Select all
mogrify -path /path/to/images -format png -trim *.png
Also, there might be an much easier way to do this all in one go within mogrify so please feel free to correct & suggest as I am very new to this excellent software..
Thankyou