Property exif table size can be reduced!

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

Property exif table size can be reduced!

Post by mootools »

Hello,

The exif TagInfo table in property.c contains duplicated elements:

Code: Select all

      {  0x828d, "exif:CFARepeatPatternDim" },
      {  0x828e, "exif:CFAPattern" },
      {  0x828f, "exif:BatteryLevel" },
      {  0x828d, "exif:CFARepeatPatternDim" },
      {  0x828e, "exif:CFAPattern" },
      {  0x828f, "exif:BatteryLevel" },
      {  0x8298, "exif:Copyright" },
      {  0x829a, "exif:ExposureTime" },
As you can see the 3 first values are repeated just below and can be removed...
This is not a bug, just a minor overload!
Manuel Jouglet
Mootools
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Property exif table size can be reduced!

Post by magick »

We have a patch in ImageMagick 6.3.8-0 Beta for the problem you reported. It will be available sometime tomorrow. Thanks.
Post Reply