Bugzilla – Bug 682238
ImageMagick: convert to 4-colour TIFF produces incorrect results
Last modified: 2011-04-11 14:56:31 UTC
User-Agent: Mozilla/5.0 (compatible; Konqueror/4.6; Linux) KHTML/4.6.0 (like Gecko) SUSE ImageMagick incorrectly saves images to indexed TIFF with a 4-color palette. The result is stretched horizontally, cropped and smudged. Since libtiff does not provide an alternative tool to do it, there is currently no way to produce such an image using openSuSE. Reproducible: Always Steps to Reproduce: 1. { convert -size 100x400 canvas:red canvas:green +append canvas:blue +append -type Palette c4.tiff && xdg-open c4.tiff; } Actual Results: 1. A red rectangle. Expected Results: 1. A red-green-blue striped rectangle. Fixed upstream
{ convert -size 100x400 canvas:red canvas:green +append canvas:blue +append -type Palette c4.tiff && xdg-open c4.tiff; }
{ convert -size 100x400 \ canvas:red canvas:green +append canvas:blue +append \ -type Palette c4.tiff && xdg-open c4.tiff; }
{ convert -size 100x400 \ canvas:red canvas:green +append canvas:blue +append \ -colors 4 c4.tiff && xdg-open c4.tiff; }
Could you please provide rpm -q --changelog tiff | head ?
http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18282
(In reply to comment #4) > rpm -q --changelog tiff | head * Thu Mar 03 2011 pgajdos@suse.cz - fixed buffer overflow [bnc#672510] * CVE-2011-0192.patch * Mon Sep 06 2010 pgajdos@suse.cz - fixed "Possibly exploitable memory corruption issue in libtiff" (see http://bugzilla.maptools.org/show_bug.cgi?id=2228) [bnc#624215] * scanlinesize.patch - fixed crash while using libjpeg7 and higher
I can confirm that this bug was fixed by suggested version update (6.6.8.9). New package will be in factory soon, testing will be appreciated Thanks for your report!
This bug (682238) was mentioned in https://build.opensuse.org/request/show/66846