From 8791f937d123d06abd79f9b279a890b948fe53b4 Mon Sep 17 00:00:00 2001 From: cristy Date: Sat, 22 Feb 2014 23:29:31 +0000 Subject: [PATCH] M coders/tiff.c --- coders/tiff.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/coders/tiff.c b/coders/tiff.c index 928950eba..b79d1c2cc 100644 --- a/coders/tiff.c +++ b/coders/tiff.c @@ -2565,40 +2565,40 @@ static void TIFFSetProperties(TIFF *tiff,Image *image,ExceptionInfo *exception) const char *value; - value=GetImageProperty(image,"tiff:document",exception); + value=GetImageArtifact(image,"tiff:document",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_DOCUMENTNAME,value); - value=GetImageProperty(image,"tiff:hostcomputer",exception); + value=GetImageArtifact(image,"tiff:hostcomputer",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_HOSTCOMPUTER,value); - value=GetImageProperty(image,"tiff:artist",exception); + value=GetImageArtifact(image,"tiff:artist",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_ARTIST,value); - value=GetImageProperty(image,"tiff:timestamp",exception); + value=GetImageArtifact(image,"tiff:timestamp",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_DATETIME,value); - value=GetImageProperty(image,"tiff:make",exception); + value=GetImageArtifact(image,"tiff:make",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_MAKE,value); - value=GetImageProperty(image,"tiff:model",exception); + value=GetImageArtifact(image,"tiff:model",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_MODEL,value); - value=GetImageProperty(image,"tiff:software",exception); + value=GetImageArtifact(image,"tiff:software",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_SOFTWARE,value); - value=GetImageProperty(image,"tiff:copyright",exception); + value=GetImageArtifact(image,"tiff:copyright",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_COPYRIGHT,value); - value=GetImageProperty(image,"kodak-33423",exception); + value=GetImageArtifact(image,"kodak-33423",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,33423,value); - value=GetImageProperty(image,"kodak-36867",exception); + value=GetImageArtifact(image,"kodak-36867",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,36867,value); - value=GetImageProperty(image,"label",exception); + value=GetImageArtifact(image,"label",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_PAGENAME,value); - value=GetImageProperty(image,"comment",exception); + value=GetImageArtifact(image,"comment",exception); if (value != (const char *) NULL) (void) TIFFSetField(tiff,TIFFTAG_IMAGEDESCRIPTION,value); } -- 2.50.1