Bad exif codes

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
mootools
Posts: 19
Joined: 2005-06-30T06:08:40-07:00
Location: France

Bad exif codes

Post by mootools »

Hello,

There are errors in the Exif table (property.c)

Code: Select all

      {  0x9216, "exif:TIFF/EPStandardID" },
      {  0xa302, "exif:CFAPattern" },
...
      {  0xa216, "exif:TIFF/EPStandardID" },
      {  0x828e, "exif:CFAPattern" },
should be

Code: Select all

      {  0x9216, "exif:TIFF/EPStandardID" },
      {  0xa302, "exif:CFAPattern" },
...
      {  0xa216, "exif:TIFF-EPStandardID" },
      {  0x828e, "exif:CFAPattern2" },
Please look at http://exif.photofb.com/jpeg-exif-description.php?R if you need to check that point.

Thanks for the correction...
Manuel Jouglet
Mootools
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Bad exif codes

Post by magick »

We have a patch in ImageMagick 6.3.8-0 Beta to fix the problems you posted. 6.3.8-0 will be available sometime tomorrow.
Post Reply