]> granicus.if.org Git - imagemagick/commitdiff
Don't include the ImageMagick version number in any image file metadata
authorCristy <urban-warrior@imagemagick.org>
Wed, 3 Aug 2016 21:46:41 +0000 (17:46 -0400)
committerCristy <urban-warrior@imagemagick.org>
Wed, 3 Aug 2016 21:46:41 +0000 (17:46 -0400)
MagickCore/resize.c
MagickCore/version.c
coders/dpx.c
coders/fits.c
coders/json.c
coders/pdf.c
coders/wmf.c

index 53e7e4620e8f390ec48afb81694ed16d695fb57a..ca95ae5d4f667043b19082174d2433046315f345 100644 (file)
@@ -3642,9 +3642,6 @@ MagickExport Image *ThumbnailImage(const Image *image,const size_t columns,
     x_factor,
     y_factor;
 
-  size_t
-    version;
-
   struct stat
     attributes;
 
@@ -3715,7 +3712,7 @@ MagickExport Image *ThumbnailImage(const Image *image,const size_t columns,
   (void) FormatLocaleString(value,MagickPathExtent,"image/%s",image->magick);
   LocaleLower(value);
   (void) SetImageProperty(thumbnail_image,"Thumb::Mimetype",value,exception);
-  (void) SetImageProperty(thumbnail_image,"software",GetMagickVersion(&version),
+  (void) SetImageProperty(thumbnail_image,"software",GetMagickHomeURL(),
     exception);
   (void) FormatLocaleString(value,MagickPathExtent,"%.20g",(double)
     image->magick_columns);
index 112d8063ebcd89af0c257e282be36e518245bad8..7127a82ce8efba976794ef89544e38eff7406df5 100644 (file)
@@ -587,7 +587,7 @@ MagickExport const char *GetMagickVersion(size_t *version)
 MagickExport void ListMagickVersion(FILE *file)
 {
   (void) FormatLocaleFile(file,"Version: %s\n",
-    GetMagickVersion((size_t *) NULL));
+    GetMagickVersion((size_t *) NULL));;
   (void) FormatLocaleFile(file,"Copyright: %s\n",GetMagickCopyright());
   (void) FormatLocaleFile(file,"License: %s\n",GetMagickLicense());
 #if defined(MAGICKCORE_WINDOWS_SUPPORT) && defined(_MSC_FULL_VER)
index 2fbfbe2225741e4df973282dff92544d019db4c0..66d8eefdac7b5de42dc7abd2b4fd6e60af920343 100644 (file)
@@ -1566,8 +1566,8 @@ static MagickBooleanType WriteDPXImage(const ImageInfo *image_info,Image *image,
     dpx.file.timestamp);
   offset+=WriteBlob(image,sizeof(dpx.file.timestamp),(unsigned char *)
     dpx.file.timestamp);
-  (void) strncpy(dpx.file.creator,GetMagickVersion((size_t *) NULL),
-    sizeof(dpx.file.creator)-1);
+  (void) strncpy(dpx.file.creator,GetMagickHomeURL(),sizeof(dpx.file.creator)-
+    1);
   value=GetDPXProperty(image,"dpx:file.creator",exception);
   if (value != (const char *) NULL)
     (void) strncpy(dpx.file.creator,value,sizeof(dpx.file.creator)-1);
index a20ec3f25bc44c4813ce2884a07f1379289dae49..17c8704ebc591b43d529e8a7113fb772e5f30936 100644 (file)
@@ -713,7 +713,7 @@ static MagickBooleanType WriteFITSImage(const ImageInfo *image_info,
       offset+=80;
     }
   (void) FormatLocaleString(header,FITSBlocksize,"HISTORY %.72s",
-    GetMagickVersion((size_t *) NULL));
+    GetMagickHomeURL());
   (void) strncpy(fits_info+offset,header,strlen(header));
   offset+=80;
   (void) strncpy(header,"END",FITSBlocksize);
index 727e7ed22356cac0100c7789ed687e4c0a5a81c7..c6d335a0f9a84e85155d22be84baaa6ed88c9d8e 100644 (file)
@@ -1552,8 +1552,7 @@ static MagickBooleanType EncodeImageAttributes(Image *image,FILE *file,
     (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
     elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
     elapsed_time))));
-  JsonFormatLocaleFile(file,"    \"version\": %s\n",
-    GetMagickVersion((size_t *) NULL));
+  JsonFormatLocaleFile(file,"    \"version\": %s\n",GetMagickHomeURL());
   (void) FormatLocaleFile(file,"  }\n}\n");
   (void) fflush(file);
   return(ferror(file) != 0 ? MagickFalse : MagickTrue);
index ae1ac0b17066d5a5dfe97e1d998165e2fed9fbcd..696588c849a238c3bcf2b1ed022c58b731ddae35 100644 (file)
@@ -1382,8 +1382,8 @@ RestoreMSCWarning
       (void) FormatMagickTime(time((time_t *) NULL),MagickPathExtent,timestamp);
       i=FormatLocaleString(xmp_profile,MagickPathExtent,XMPProfile,
         XMPProfileMagick,modify_date,create_date,timestamp,
-        GetMagickVersion(&version),EscapeParenthesis(basename),
-        GetMagickVersion(&version));
+        GetMagickHomeURL(),EscapeParenthesis(basename),
+        GetMagickHomeURL());
       (void) FormatLocaleString(buffer,MagickPathExtent,"/Length %.20g\n",
         (double) i);
       (void) WriteBlobString(image,buffer);
@@ -2837,7 +2837,7 @@ RestoreMSCWarning
   (void) FormatLocaleString(buffer,MagickPathExtent,"/ModDate (%s)\n",date);
   (void) WriteBlobString(image,buffer);
   (void) FormatLocaleString(buffer,MagickPathExtent,"/Producer (%s)\n",
-    EscapeParenthesis(GetMagickVersion((size_t *) NULL)));
+    EscapeParenthesis(GetMagickHomeURL()));
   (void) WriteBlobString(image,buffer);
   (void) WriteBlobString(image,">>\n");
   (void) WriteBlobString(image,"endobj\n");
index 77ce331ef6b75a50b6ffeae9377f2d21275f8c3b..4524bec19439746cb022dd69b07e5fca38f4e16f 100644 (file)
@@ -835,10 +835,10 @@ static void ipa_device_begin(wmfAPI * API)
   /* Make SVG output happy */
   (void) PushDrawingWand(WmfDrawingWand);
 
-  DrawSetViewbox(WmfDrawingWand, 0, 0, ddata->image->columns, ddata->image->rows );
+  DrawSetViewbox(WmfDrawingWand,0,0,ddata->image->columns,ddata->image->rows);
 
-  (void) FormatLocaleString(comment,MagickPathExtent,"Created by ImageMagick %s",
-    GetMagickVersion((size_t *) NULL));
+  (void) FormatLocaleString(comment,MagickPathExtent,
+    "Created by ImageMagick %s",GetMagickHomeURL());
   DrawComment(WmfDrawingWand,comment);
 
   /* Scale width and height to image */