Colored Canvas Washes Out Image
Posted: 2012-06-28T12:38:28-07:00
I want my image to be exactly 70px by 70px with a red canvas.
This does not work because the canvas is black:
This does not work because the image gets washed out with red:
How can I have a canvas color other than transparent or black while maintaining the integrity of the image?
This does not work because the canvas is black:
Code: Select all
convert -size 70x70 xc:transparent null: ( rose: -thumbnail "70x70" +repage ( +clone -shave 10x10 -fill gray50 -colorize 100% -mattecolor gray50 -frame 10x10+3+4 -blur 0x2 ) -compose HardLight -composite ) -gravity Center -layers Composite -format jpg -unsharp 0x.5 -strip -quality 80 output1.jpg
Code: Select all
convert -size 70x70 xc:Red null: ( rose: -thumbnail "70x70" +repage ( +clone -shave 10x10 -fill gray50 -colorize 100% -mattecolor gray50 -frame 10x10+3+4 -blur 0x2 ) -compose HardLight -composite ) -gravity Center -layers Composite -format jpg -unsharp 0x.5 -strip -quality 80 output2.jpg