Skip to content

Commit

Permalink
https://github.com/ImageMagick/ImageMagick/pull/5034
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristy committed Apr 9, 2022
1 parent 98abe54 commit dc070da
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions magick/property.c
Expand Up @@ -1526,12 +1526,14 @@ static MagickBooleanType GetEXIFProperty(const Image *image,
}
case EXIF_FMT_SINGLE:
{
EXIFMultipleValues(4,"%f",(double) *(float *) p1);
EXIFMultipleValues(4,"%.20g",(double)
ReadPropertySignedLong(endian,p1));
break;
}
case EXIF_FMT_DOUBLE:
{
EXIFMultipleValues(8,"%f",*(double *) p1);
EXIFMultipleValues(8,"%.20g",(double)
ReadPropertySignedLong(endian,p1));
break;
}
case EXIF_FMT_STRING:
Expand Down

0 comments on commit dc070da

Please sign in to comment.