Different colors after convert WHY?
Posted: 2016-09-23T05:31:36-07:00
I got one source
and make 2 type of command and get images with different colors
1)Command
http://images2.icanvas.com/framed-print ... f6/300.jpg
2)Command
Can -colorspace sRGB change such ?
and make 2 type of command and get images with different colors
1)Command
Code: Select all
convert -size $image_size canvas:none \
$background_image -geometry $image_size+0+0 -composite \
\( $in -colorspace RGB \) -geometry $transform -composite \
$out 2>&1
http://images2.icanvas.com/framed-print ... f6/300.jpg
2)Command
Code: Select all
convert $in -colorspace RGB -resize 750x750 -colorspace sRGB -flatten -strip -interlace Plane -quality 85% $out 2>&1
Can -colorspace sRGB change such ?