PSD and PNG

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
mickael.l
Posts: 1
Joined: 2012-12-18T09:32:25-07:00
Authentication code: 6789

PSD and PNG

Post by mickael.l »

In ImageMagick 6.8.0-4

For PSD:
the resolution unit is unset in the psd.c

correction in psd.c:465:

Code: Select all

        image->units = PixelsPerInchResolution;

For PNG:
the image->matte info in unset during the call of the function PingImage()

correction in png.c:2913

Code: Select all

      image->matte=(((int) ping_color_type == PNG_COLOR_TYPE_RGB_ALPHA) ||
          ((int) ping_color_type == PNG_COLOR_TYPE_GRAY_ALPHA) ||
          (png_get_valid(ping,ping_info,PNG_INFO_tRNS))) ?
          MagickTrue : MagickFalse;
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: PSD and PNG

Post by magick »

We applied the PSD patch. Glenn, review the PNG patch and apply.
Post Reply