I am trying to generate to GIFS with different sizes: 50x50 and 150x150 (source file at https://drive.google.com/folderview?id= ... sp=sharing).
When I run the below command for generating the GIF files I get a correct 50x50 image, but the other image (150x150) is "corrupted" (test results also attached at link above).
Code: Select all
$ convert -quiet rgb_screen.tif -flatten -alpha transparent -clip -alpha opaque -trim +repage -resize 50x50 -profile "/opt/profiles/icc/rgb/sRGB Color Space Profile.icm" -unsharp 0.5x0.5+3.0+0.05 -dither Riemersma -units PixelsPerInch -density 72 -strip -background "rgb(254,255,255)" -flatten -transparent "rgb(254,255,255)" -transparent-color "rgb(254,255,255)" mini.gif
$ convert -quiet rgb_screen.tif -flatten -alpha transparent -clip -alpha opaque -trim +repage -resize 150x150 -profile "/opt/profiles/icc/rgb/sRGB Color Space Profile.icm" -unsharp 0.5x0.5+3.0+0.05 -dither Riemersma -units PixelsPerInch -density 72 -strip -background "rgb(254,255,255)" -flatten -transparent "rgb(254,255,255)" -transparent-color "rgb(254,255,255)" thumb.gif
If I run the same test on the last IM available version (ImageMagick 6.8.9-0 Q16 x86_64 2014-04-17) the results are even worse: the GIF images only show a white strip instead of the original image.