summaryrefslogtreecommitdiff
path: root/src/im_format_tiff.cpp
diff options
context:
space:
mode:
authorscuri <scuri>2009-08-22 04:31:03 +0000
committerscuri <scuri>2009-08-22 04:31:03 +0000
commit36e80e6481f7518e8005527d8965148039ba8dc2 (patch)
tree04446e7c74b2b9468551a77b750000d6809fa227 /src/im_format_tiff.cpp
parent0ab3aef31d7820f40bb22e15bba930f923f8bf72 (diff)
*** empty log message ***
Diffstat (limited to 'src/im_format_tiff.cpp')
-rw-r--r--src/im_format_tiff.cpp55
1 files changed, 48 insertions, 7 deletions
diff --git a/src/im_format_tiff.cpp b/src/im_format_tiff.cpp
index 66fbe57..5b072fc 100644
--- a/src/im_format_tiff.cpp
+++ b/src/im_format_tiff.cpp
@@ -3,7 +3,7 @@
*
* See Copyright Notice in im_lib.h
* See libTIFF Copyright Notice in tiff.h
- * $Id: im_format_tiff.cpp,v 1.3 2009/08/19 18:39:43 scuri Exp $
+ * $Id: im_format_tiff.cpp,v 1.4 2009/08/22 04:31:04 scuri Exp $
*/
#include "im_format.h"
@@ -34,9 +34,6 @@
static const TIFFFieldInfo iTiffFieldInfo[] =
{
- /* missing in libTIFF (fixed in libtiff 4.0) */
- { EXIFTAG_COLORSPACE, 1, 1, TIFF_SHORT, FIELD_CUSTOM, TRUE, FALSE, "ColorSpace" },
-
/* Patch from Dave Coffin (Used for DNG) */
{ TIFFTAG_WHITELEVEL, -2, -1, TIFF_LONG, FIELD_CUSTOM, 0, 1, "WhiteLevel" },
{ TIFFTAG_WHITELEVEL, -2, -1, TIFF_SHORT, FIELD_CUSTOM, 0, 1, "WhiteLevel" },
@@ -301,12 +298,16 @@ static void iTIFFReadCustomTags(TIFF* tiff, imAttribTable* attrib_table)
if (fld == NULL)
continue;
- if (fld->field_tag == TIFFTAG_EXIFIFD || /* offset */
+ /* offsets */
+ if (fld->field_tag == TIFFTAG_EXIFIFD ||
fld->field_tag == TIFFTAG_GPSIFD ||
fld->field_tag == TIFFTAG_INTEROPERABILITYIFD ||
fld->field_tag == TIFFTAG_SUBIFD ||
- fld->field_tag == TIFFTAG_COLORMAP || /* handled elsewhere */
- fld->field_tag == TIFFTAG_EXTRASAMPLES ||
+ fld->field_tag == TIFFTAG_COLORMAP)
+ continue;
+
+ /* handled elsewhere */
+ if (fld->field_tag == TIFFTAG_EXTRASAMPLES ||
fld->field_tag == TIFFTAG_TRANSFERFUNCTION ||
fld->field_tag == TIFFTAG_RESOLUTIONUNIT ||
fld->field_tag == TIFFTAG_XRESOLUTION ||
@@ -449,7 +450,47 @@ static void iTIFFReadCustomTags(TIFF* tiff, imAttribTable* attrib_table)
delete [] float_data;
}
else
+ {
+ char* newstr = NULL;
+
+ if (fld->field_type == TIFF_ASCII && ((char*)data)[data_count-1] != 0)
+ {
+ int i = data_count-1;
+ char* p = (char*)data;
+ while (i > 0 && p[i] != 0)
+ i--;
+ if (i == 0)
+ {
+ if (fld->field_tag == TIFFTAG_DATETIME ||
+ fld->field_tag == EXIFTAG_DATETIMEORIGINAL ||
+ fld->field_tag == EXIFTAG_DATETIMEDIGITIZED)
+ {
+ /* sometimes theses tags get non standard strings,
+ libTIIF does not returns the actual number os bytes read,
+ it returns the standard value of 20.
+ so we will try to find the actual string size, but we risk in a memory invalid access. */
+ i = data_count;
+ while (i < data_count+6 && p[i] != 0)
+ i++;
+ if (i < data_count+6)
+ data_count = i+1;
+ }
+ else
+ {
+ newstr = (char*)malloc(data_count+1);
+ memcpy(newstr, data, data_count);
+ newstr[data_count] = 0;
+ data_count++;
+ }
+ }
+ else
+ data_count = i;
+ }
+
attrib_table->Set(fld->field_name, data_type, data_count, data);
+
+ if (newstr) free(newstr);
+ }
}
}
}