]> granicus.if.org Git - imagemagick/blob - MagickCore/identify.c
(no commit message)
[imagemagick] / MagickCore / identify.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %           IIIII  DDDD   EEEEE  N   N  TTTTT  IIIII  FFFFF  Y   Y            %
7 %             I    D   D  E      NN  N    T      I    F       Y Y             %
8 %             I    D   D  EEE    N N N    T      I    FFF      Y              %
9 %             I    D   D  E      N  NN    T      I    F        Y              %
10 %           IIIII  DDDD   EEEEE  N   N    T    IIIII  F        Y              %
11 %                                                                             %
12 %                                                                             %
13 %               Identify an Image Format and Characteristics.                 %
14 %                                                                             %
15 %                           Software Design                                   %
16 %                                Cristy                                       %
17 %                            September 1994                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2014 ImageMagick Studio LLC, a non-profit organization      %
21 %  dedicated to making software imaging solutions freely available.           %
22 %                                                                             %
23 %  You may not use this file except in compliance with the License.  You may  %
24 %  obtain a copy of the License at                                            %
25 %                                                                             %
26 %    http://www.imagemagick.org/script/license.php                            %
27 %                                                                             %
28 %  Unless required by applicable law or agreed to in writing, software        %
29 %  distributed under the License is distributed on an "AS IS" BASIS,          %
30 %  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   %
31 %  See the License for the specific language governing permissions and        %
32 %  limitations under the License.                                             %
33 %                                                                             %
34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35 %
36 %  Identify describes the format and characteristics of one or more image
37 %  files.  It will also report if an image is incomplete or corrupt.
38 %
39 %
40 */
41 \f
42 /*
43   Include declarations.
44 */
45 #include "MagickCore/studio.h"
46 #include "MagickCore/annotate.h"
47 #include "MagickCore/artifact.h"
48 #include "MagickCore/attribute.h"
49 #include "MagickCore/blob.h"
50 #include "MagickCore/cache.h"
51 #include "MagickCore/client.h"
52 #include "MagickCore/coder.h"
53 #include "MagickCore/color.h"
54 #include "MagickCore/configure.h"
55 #include "MagickCore/constitute.h"
56 #include "MagickCore/decorate.h"
57 #include "MagickCore/delegate.h"
58 #include "MagickCore/draw.h"
59 #include "MagickCore/effect.h"
60 #include "MagickCore/exception.h"
61 #include "MagickCore/exception-private.h"
62 #include "MagickCore/feature.h"
63 #include "MagickCore/gem.h"
64 #include "MagickCore/geometry.h"
65 #include "MagickCore/histogram.h"
66 #include "MagickCore/identify.h"
67 #include "MagickCore/image.h"
68 #include "MagickCore/image-private.h"
69 #include "MagickCore/list.h"
70 #include "MagickCore/locale_.h"
71 #include "MagickCore/log.h"
72 #include "MagickCore/magic.h"
73 #include "MagickCore/magick.h"
74 #include "MagickCore/memory_.h"
75 #include "MagickCore/module.h"
76 #include "MagickCore/monitor.h"
77 #include "MagickCore/montage.h"
78 #include "MagickCore/option.h"
79 #include "MagickCore/pixel-accessor.h"
80 #include "MagickCore/prepress.h"
81 #include "MagickCore/profile.h"
82 #include "MagickCore/property.h"
83 #include "MagickCore/quantize.h"
84 #include "MagickCore/quantum.h"
85 #include "MagickCore/random_.h"
86 #include "MagickCore/registry.h"
87 #include "MagickCore/resize.h"
88 #include "MagickCore/resource_.h"
89 #include "MagickCore/signature.h"
90 #include "MagickCore/statistic.h"
91 #include "MagickCore/string_.h"
92 #include "MagickCore/string-private.h"
93 #include "MagickCore/timer.h"
94 #include "MagickCore/token.h"
95 #include "MagickCore/utility.h"
96 #include "MagickCore/utility-private.h"
97 #include "MagickCore/version.h"
98 \f
99 /*
100 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
101 %                                                                             %
102 %                                                                             %
103 %                                                                             %
104 %   I d e n t i f y I m a g e                                                 %
105 %                                                                             %
106 %                                                                             %
107 %                                                                             %
108 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109 %
110 %  IdentifyImage() identifies an image by printing its attributes to the file.
111 %  Attributes include the image width, height, size, and others.
112 %
113 %  The format of the IdentifyImage method is:
114 %
115 %      MagickBooleanType IdentifyImage(Image *image,FILE *file,
116 %        const MagickBooleanType verbose,ExceptionInfo *exception)
117 %
118 %  A description of each parameter follows:
119 %
120 %    o image: the image.
121 %
122 %    o file: the file, typically stdout.
123 %
124 %    o verbose: A value other than zero prints more detailed information
125 %      about the image.
126 %
127 %    o exception: return any errors or warnings in this structure.
128 %
129 */
130
131 static ChannelStatistics *GetLocationStatistics(const Image *image,
132   const StatisticType type,ExceptionInfo *exception)
133 {
134   ChannelStatistics
135     *channel_statistics;
136
137   register ssize_t
138     i;
139
140   ssize_t
141     y;
142
143   assert(image != (Image *) NULL);
144   assert(image->signature == MagickSignature);
145   if (image->debug != MagickFalse)
146     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
147   channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
148     MaxPixelChannels+1,sizeof(*channel_statistics));
149   if (channel_statistics == (ChannelStatistics *) NULL)
150     ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
151   (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
152     sizeof(*channel_statistics));
153   for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
154   {
155     switch (type)
156     {
157       case MaximumStatistic:
158       default:
159       {
160         channel_statistics[i].maxima=(-MagickMaximumValue);
161         break;
162       }
163       case MinimumStatistic:
164       {
165         channel_statistics[i].minima=MagickMaximumValue;
166         break;
167       }
168     }
169   }
170   for (y=0; y < (ssize_t) image->rows; y++)
171   {
172     register const Quantum
173       *restrict p;
174
175     register ssize_t
176       x;
177
178     p=GetVirtualPixels(image,0,y,image->columns,1,exception);
179     if (p == (const Quantum *) NULL)
180       break;
181     for (x=0; x < (ssize_t) image->columns; x++)
182     {
183       register ssize_t
184         i;
185
186       if (GetPixelReadMask(image,p) == 0)
187         {
188           p+=GetPixelChannels(image);
189           continue;
190         }
191       for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
192       {
193         PixelChannel channel=GetPixelChannelChannel(image,i);
194         PixelTrait traits=GetPixelChannelTraits(image,channel);
195         if (traits == UndefinedPixelTrait)
196           continue;
197         switch (type)
198         {
199           case MaximumStatistic:
200           default:
201           {
202             if ((double) p[i] > channel_statistics[channel].maxima)
203               channel_statistics[channel].maxima=(double) p[i];
204             break;
205           }
206           case MinimumStatistic:
207           {
208             if ((double) p[i] < channel_statistics[channel].minima)
209               channel_statistics[channel].minima=(double) p[i];
210             break;
211           }
212         }
213       }
214       p+=GetPixelChannels(image);
215     }
216   }
217   return(channel_statistics);
218 }
219
220 static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
221   const char *name,const ChannelFeatures *channel_features)
222 {
223 #define PrintFeature(feature) \
224   GetMagickPrecision(),(feature)[0], \
225   GetMagickPrecision(),(feature)[1], \
226   GetMagickPrecision(),(feature)[2], \
227   GetMagickPrecision(),(feature)[3], \
228   GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
229
230 #define FeaturesFormat "    %s:\n" \
231   "      Angular Second Moment:\n" \
232   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
233   "      Contrast:\n" \
234   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
235   "      Correlation:\n" \
236   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
237   "      Sum of Squares Variance:\n" \
238   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
239   "      Inverse Difference Moment:\n" \
240   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
241   "      Sum Average:\n" \
242   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
243   "      Sum Variance:\n" \
244   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
245   "      Sum Entropy:\n" \
246   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
247   "      Entropy:\n" \
248   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
249   "      Difference Variance:\n" \
250   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
251   "      Difference Entropy:\n" \
252   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
253   "      Information Measure of Correlation 1:\n" \
254   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
255   "      Information Measure of Correlation 2:\n" \
256   "        %.*g, %.*g, %.*g, %.*g, %.*g\n" \
257   "      Maximum Correlation Coefficient:\n" \
258   "        %.*g, %.*g, %.*g, %.*g, %.*g\n"
259
260   ssize_t
261     n;
262
263   n=FormatLocaleFile(file,FeaturesFormat,name,
264     PrintFeature(channel_features[channel].angular_second_moment),
265     PrintFeature(channel_features[channel].contrast),
266     PrintFeature(channel_features[channel].correlation),
267     PrintFeature(channel_features[channel].variance_sum_of_squares),
268     PrintFeature(channel_features[channel].inverse_difference_moment),
269     PrintFeature(channel_features[channel].sum_average),
270     PrintFeature(channel_features[channel].sum_variance),
271     PrintFeature(channel_features[channel].sum_entropy),
272     PrintFeature(channel_features[channel].entropy),
273     PrintFeature(channel_features[channel].difference_variance),
274     PrintFeature(channel_features[channel].difference_entropy),
275     PrintFeature(channel_features[channel].measure_of_correlation_1),
276     PrintFeature(channel_features[channel].measure_of_correlation_2),
277     PrintFeature(channel_features[channel].maximum_correlation_coefficient));
278   return(n);
279 }
280
281 static ssize_t PrintChannelLocations(FILE *file,const Image *image,
282   const PixelChannel channel,const char *name,const StatisticType type,
283   const size_t max_locations,const ChannelStatistics *channel_statistics)
284 {
285   double
286     target;
287
288   ExceptionInfo
289     *exception;
290
291   ssize_t
292     n,
293     y;
294
295   switch (type)
296   {
297     case MaximumStatistic:
298     default:
299     {
300       target=channel_statistics[channel].maxima;
301       break;
302     }
303     case MinimumStatistic:
304     {
305       target=channel_statistics[channel].minima;
306       break;
307     }
308   }
309   (void) FormatLocaleFile(file,"  %s: %.*g (%.*g)",name,GetMagickPrecision(),
310     target,GetMagickPrecision(),QuantumScale*target);
311   exception=AcquireExceptionInfo();
312   n=0;
313   for (y=0; y < (ssize_t) image->rows; y++)
314   {
315     register const Quantum
316       *p;
317
318     ssize_t
319       offset,
320       x;
321
322     p=GetVirtualPixels(image,0,y,image->columns,1,exception);
323     if (p == (const Quantum *) NULL)
324       break;
325     for (x=0; x < (ssize_t) image->columns; x++)
326     {
327       MagickBooleanType
328         match;
329
330       PixelTrait traits=GetPixelChannelTraits(image,channel);
331       if (traits == UndefinedPixelTrait)
332         continue;
333       offset=GetPixelChannelOffset(image,channel);
334       match=fabs((double) p[offset]-target) < 0.5 ? MagickTrue : MagickFalse;
335       if (match != MagickFalse)
336         {
337           if ((max_locations != 0) && (n >= (ssize_t) max_locations))
338             break;
339           (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
340           n++;
341         }
342       p+=GetPixelChannels(image);
343     }
344     if (x < (ssize_t) image->columns)
345       break;
346   }
347   (void) FormatLocaleFile(file,"\n");
348   return(n);
349 }
350
351 static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
352   const char *name,const double scale,const ChannelMoments *channel_moments)
353 {
354   double
355     powers[MaximumNumberOfImageMoments] =
356       { 1.0, 2.0, 3.0, 3.0, 6.0, 4.0, 6.0, 4.0 };
357
358   register ssize_t
359     i;
360
361   ssize_t
362     n;
363
364   n=FormatLocaleFile(file,"    %s:\n",name);
365   n+=FormatLocaleFile(file,"      Centroid: %.*g,%.*g\n",
366     GetMagickPrecision(),channel_moments[channel].centroid.x,
367     GetMagickPrecision(),channel_moments[channel].centroid.y);
368   n+=FormatLocaleFile(file,"      Ellipse Semi-Major/Minor axis: %.*g,%.*g\n",
369     GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
370     GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
371   n+=FormatLocaleFile(file,"      Ellipse angle: %.*g\n",
372     GetMagickPrecision(),channel_moments[channel].ellipse_angle);
373   n+=FormatLocaleFile(file,"      Ellipse eccentricity: %.*g\n",
374     GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
375   n+=FormatLocaleFile(file,"      Ellipse intensity: %.*g (%.*g)\n",
376     GetMagickPrecision(),pow(scale,powers[0])*
377     channel_moments[channel].ellipse_intensity,GetMagickPrecision(),
378     channel_moments[channel].ellipse_intensity);
379   for (i=0; i < MaximumNumberOfImageMoments; i++)
380     n+=FormatLocaleFile(file,"      I%.20g: %.*g (%.*g)\n",i+1.0,
381       GetMagickPrecision(),channel_moments[channel].invariant[i]/pow(scale,
382       powers[i]),GetMagickPrecision(),channel_moments[channel].invariant[i]);
383   return(n);
384 }
385
386 static ssize_t PrintChannelPerceptualHash(FILE *file,const PixelChannel channel,
387   const char *name,const ChannelPerceptualHash *channel_phash)
388 {
389   register ssize_t
390     i;
391
392   ssize_t
393     n;
394
395   n=FormatLocaleFile(file,"    %s:\n",name);
396   for (i=0; i < MaximumNumberOfImageMoments; i++)
397     n+=FormatLocaleFile(file,"      PH%.20g: %.*g, %.*g\n",i+1.0,
398       GetMagickPrecision(),channel_phash[channel].srgb_hu_phash[i],
399       GetMagickPrecision(),channel_phash[channel].hclp_hu_phash[i]);
400   return(n);
401 }
402
403 static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
404   const char *name,const double scale,
405   const ChannelStatistics *channel_statistics)
406 {
407 #define StatisticsFormat "    %s:\n      min: " QuantumFormat  \
408   " (%g)\n      max: " QuantumFormat " (%g)\n"  \
409   "      mean: %g (%g)\n      standard deviation: %g (%g)\n"  \
410   "      kurtosis: %g\n      skewness: %g\n"
411
412   ssize_t
413     n;
414
415   n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
416     channel_statistics[channel].minima),channel_statistics[channel].minima/
417     (double) QuantumRange,ClampToQuantum(scale*
418     channel_statistics[channel].maxima),channel_statistics[channel].maxima/
419     (double) QuantumRange,scale*channel_statistics[channel].mean,
420     channel_statistics[channel].mean/(double) QuantumRange,scale*
421     channel_statistics[channel].standard_deviation,
422     channel_statistics[channel].standard_deviation/(double) QuantumRange,
423     channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
424   return(n);
425 }
426
427 MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
428   const MagickBooleanType verbose,ExceptionInfo *exception)
429 {
430   char
431     color[MaxTextExtent],
432     format[MaxTextExtent],
433     key[MaxTextExtent];
434
435   ChannelFeatures
436     *channel_features;
437
438   ChannelMoments
439     *channel_moments;
440
441   ChannelPerceptualHash
442     *channel_phash;
443
444   ChannelStatistics
445     *channel_statistics;
446
447   ColorspaceType
448     colorspace;
449
450   const char
451     *artifact,
452     *locate,
453     *name,
454     *property,
455     *registry,
456     *value;
457
458   const MagickInfo
459     *magick_info;
460
461   double
462     elapsed_time,
463     scale,
464     user_time;
465
466   ImageType
467     type;
468
469   MagickBooleanType
470     ping;
471
472   register const Quantum
473     *p;
474
475   register ssize_t
476     i,
477     x;
478
479   size_t
480     distance;
481
482   ssize_t
483     y;
484
485   assert(image != (Image *) NULL);
486   assert(image->signature == MagickSignature);
487   if (image->debug != MagickFalse)
488     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
489   if (file == (FILE *) NULL)
490     file=stdout;
491   locate=GetImageArtifact(image,"identify:locate");
492   if (locate != (const char *) NULL)
493     {
494       const char
495         *limit;
496
497       size_t
498         max_locations;
499
500       StatisticType
501         type;
502
503       /*
504         Display minimum, maximum, or mean pixel locations.
505       */
506       type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
507         MagickFalse,locate);
508       limit=GetImageArtifact(image,"identify:limit");
509       max_locations=0;
510       if (limit != (const char *) NULL)
511         max_locations=StringToUnsignedLong(limit);
512       channel_statistics=GetLocationStatistics(image,type,exception);
513       if (channel_statistics == (ChannelStatistics *) NULL)
514         return(MagickFalse);
515       colorspace=image->colorspace;
516       if (IsImageGray(image,exception) != MagickFalse)
517         colorspace=GRAYColorspace;
518       (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
519       switch (colorspace)
520       {
521         case RGBColorspace:
522         default:
523         {
524           (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
525             type,max_locations,channel_statistics);
526           (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
527             type,max_locations,channel_statistics);
528           (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
529             type,max_locations,channel_statistics);
530           break;
531         }
532         case CMYKColorspace:
533         {
534           (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
535             type,max_locations,channel_statistics);
536           (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
537             type,max_locations,channel_statistics);
538           (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
539             type,max_locations,channel_statistics);
540           (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
541             type,max_locations,channel_statistics);
542           break;
543         }
544         case GRAYColorspace:
545         {
546           (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
547             type,max_locations,channel_statistics);
548           break;
549         }
550       }
551       if (image->alpha_trait == BlendPixelTrait)
552         (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
553           type,max_locations,channel_statistics);
554       channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
555         channel_statistics);
556       return(ferror(file) != 0 ? MagickFalse : MagickTrue);
557     }
558   *format='\0';
559   elapsed_time=GetElapsedTime(&image->timer);
560   user_time=GetUserTime(&image->timer);
561   GetTimerInfo(&image->timer);
562   if (verbose == MagickFalse)
563     {
564       /*
565         Display summary info about the image.
566       */
567       if (*image->magick_filename != '\0')
568         if (LocaleCompare(image->magick_filename,image->filename) != 0)
569           (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
570        if ((GetPreviousImageInList(image) == (Image *) NULL) &&
571            (GetNextImageInList(image) == (Image *) NULL) &&
572            (image->scene == 0))
573         (void) FormatLocaleFile(file,"%s ",image->filename);
574       else
575         (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
576           image->scene);
577       (void) FormatLocaleFile(file,"%s ",image->magick);
578       if ((image->magick_columns != 0) || (image->magick_rows != 0))
579         if ((image->magick_columns != image->columns) ||
580             (image->magick_rows != image->rows))
581           (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
582             image->magick_columns,(double) image->magick_rows);
583       (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
584         (double) image->rows);
585       if ((image->page.width != 0) || (image->page.height != 0) ||
586           (image->page.x != 0) || (image->page.y != 0))
587         (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
588           image->page.width,(double) image->page.height,(double) image->page.x,
589           (double) image->page.y);
590       (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
591       if (image->type != UndefinedType)
592         (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
593           MagickTypeOptions,(ssize_t) image->type));
594       if (image->colorspace != UndefinedColorspace)
595         (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
596           MagickColorspaceOptions,(ssize_t) image->colorspace));
597       if (image->storage_class == DirectClass)
598         {
599           if (image->total_colors != 0)
600             {
601               (void) FormatMagickSize(image->total_colors,MagickFalse,format);
602               (void) FormatLocaleFile(file,"%s ",format);
603             }
604         }
605       else
606         if (image->total_colors <= image->colors)
607           (void) FormatLocaleFile(file,"%.20gc ",(double)
608             image->colors);
609         else
610           (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
611             image->total_colors,(double) image->colors);
612       if (image->error.mean_error_per_pixel != 0.0)
613         (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
614           (image->error.mean_error_per_pixel+0.5),
615           image->error.normalized_mean_error,
616           image->error.normalized_maximum_error);
617       if (GetBlobSize(image) != 0)
618         {
619           (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
620           (void) FormatLocaleFile(file,"%s ",format);
621         }
622       (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
623         (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
624         elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
625         floor(elapsed_time))));
626       (void) FormatLocaleFile(file,"\n");
627       (void) fflush(file);
628       return(ferror(file) != 0 ? MagickFalse : MagickTrue);
629     }
630   /*
631     Display verbose info about the image.
632   */
633   p=GetVirtualPixels(image,0,0,1,1,exception);
634   ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
635   type=GetImageType(image,exception);
636   (void) SignatureImage(image,exception);
637   (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
638   if (*image->magick_filename != '\0')
639     if (LocaleCompare(image->magick_filename,image->filename) != 0)
640       {
641         char
642           filename[MaxTextExtent];
643
644         GetPathComponent(image->magick_filename,TailPath,filename);
645         (void) FormatLocaleFile(file,"  Base filename: %s\n",filename);
646       }
647   magick_info=GetMagickInfo(image->magick,exception);
648   if ((magick_info == (const MagickInfo *) NULL) ||
649       (GetMagickDescription(magick_info) == (const char *) NULL))
650     (void) FormatLocaleFile(file,"  Format: %s\n",image->magick);
651   else
652     (void) FormatLocaleFile(file,"  Format: %s (%s)\n",image->magick,
653       GetMagickDescription(magick_info));
654   if ((magick_info != (const MagickInfo *) NULL) &&
655       (GetMagickMimeType(magick_info) != (const char *) NULL))
656     (void) FormatLocaleFile(file,"  Mime type: %s\n",GetMagickMimeType(
657       magick_info));
658   (void) FormatLocaleFile(file,"  Class: %s\n",CommandOptionToMnemonic(
659     MagickClassOptions,(ssize_t) image->storage_class));
660   (void) FormatLocaleFile(file,"  Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
661     image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
662     image->tile_offset.y);
663   if ((image->magick_columns != 0) || (image->magick_rows != 0))
664     if ((image->magick_columns != image->columns) ||
665         (image->magick_rows != image->rows))
666       (void) FormatLocaleFile(file,"  Base geometry: %.20gx%.20g\n",(double)
667         image->magick_columns,(double) image->magick_rows);
668   if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
669     {
670       (void) FormatLocaleFile(file,"  Resolution: %gx%g\n",image->resolution.x,
671         image->resolution.y);
672       (void) FormatLocaleFile(file,"  Print size: %gx%g\n",(double)
673         image->columns/image->resolution.x,(double) image->rows/
674         image->resolution.y);
675     }
676   (void) FormatLocaleFile(file,"  Units: %s\n",CommandOptionToMnemonic(
677     MagickResolutionOptions,(ssize_t) image->units));
678   (void) FormatLocaleFile(file,"  Type: %s\n",CommandOptionToMnemonic(
679     MagickTypeOptions,(ssize_t) type));
680   if (image->type != UndefinedType)
681     (void) FormatLocaleFile(file,"  Base type: %s\n",CommandOptionToMnemonic(
682       MagickTypeOptions,(ssize_t) image->type));
683   (void) FormatLocaleFile(file,"  Endianess: %s\n",CommandOptionToMnemonic(
684     MagickEndianOptions,(ssize_t) image->endian));
685   /*
686     Detail channel depth and extrema.
687   */
688   (void) FormatLocaleFile(file,"  Colorspace: %s\n",CommandOptionToMnemonic(
689     MagickColorspaceOptions,(ssize_t) image->colorspace));
690   channel_statistics=(ChannelStatistics *) NULL;
691   channel_moments=(ChannelMoments *) NULL;
692   channel_phash=(ChannelPerceptualHash *) NULL;
693   channel_features=(ChannelFeatures *) NULL;
694   colorspace=image->colorspace;
695   scale=1.0;
696   if (ping == MagickFalse)
697     {
698       size_t
699         depth;
700
701       channel_statistics=GetImageStatistics(image,exception);
702       if (channel_statistics == (ChannelStatistics *) NULL)
703         return(MagickFalse);
704       artifact=GetImageArtifact(image,"identify:moments");
705       if (artifact != (const char *) NULL)
706         {
707           channel_moments=GetImageMoments(image,exception);
708           channel_phash=GetImagePerceptualHash(image,exception);
709         }
710       artifact=GetImageArtifact(image,"identify:features");
711       if (artifact != (const char *) NULL)
712         {
713           distance=StringToUnsignedLong(artifact);
714           channel_features=GetImageFeatures(image,distance,exception);
715         }
716       depth=GetImageDepth(image,exception);
717       if (image->depth == depth)
718         (void) FormatLocaleFile(file,"  Depth: %.20g-bit\n",(double)
719           image->depth);
720       else
721         (void) FormatLocaleFile(file,"  Depth: %.20g/%.20g-bit\n",(double)
722           image->depth,(double) depth);
723       (void) FormatLocaleFile(file,"  Channel depth:\n");
724       if (IsImageGray(image,exception) != MagickFalse)
725         colorspace=GRAYColorspace;
726       switch (colorspace)
727       {
728         case RGBColorspace:
729         default:
730         {
731           (void) FormatLocaleFile(file,"    Red: %.20g-bit\n",(double)
732             channel_statistics[RedPixelChannel].depth);
733           (void) FormatLocaleFile(file,"    Green: %.20g-bit\n",(double)
734             channel_statistics[GreenPixelChannel].depth);
735           (void) FormatLocaleFile(file,"    Blue: %.20g-bit\n",(double)
736             channel_statistics[BluePixelChannel].depth);
737           break;
738         }
739         case CMYKColorspace:
740         {
741           (void) FormatLocaleFile(file,"    Cyan: %.20g-bit\n",(double)
742             channel_statistics[CyanPixelChannel].depth);
743           (void) FormatLocaleFile(file,"    Magenta: %.20g-bit\n",(double)
744             channel_statistics[MagentaPixelChannel].depth);
745           (void) FormatLocaleFile(file,"    Yellow: %.20g-bit\n",(double)
746             channel_statistics[YellowPixelChannel].depth);
747           (void) FormatLocaleFile(file,"    Black: %.20g-bit\n",(double)
748             channel_statistics[BlackPixelChannel].depth);
749           break;
750         }
751         case GRAYColorspace:
752         {
753           (void) FormatLocaleFile(file,"    Gray: %.20g-bit\n",(double)
754             channel_statistics[GrayPixelChannel].depth);
755           break;
756         }
757       }
758       if (image->alpha_trait == BlendPixelTrait)
759         (void) FormatLocaleFile(file,"    alpha: %.20g-bit\n",(double)
760           channel_statistics[AlphaPixelChannel].depth);
761       scale=1.0;
762       if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
763         scale=(double) QuantumRange/((size_t) QuantumRange >> ((size_t)
764           MAGICKCORE_QUANTUM_DEPTH-image->depth));
765     }
766   if (channel_statistics != (ChannelStatistics *) NULL)
767     {
768       (void) FormatLocaleFile(file,"  Channel statistics:\n");
769       (void) FormatLocaleFile(file,"    Pixels: %.20g\n",
770         (double) image->columns*image->rows);
771       switch (colorspace)
772       {
773         case RGBColorspace:
774         default:
775         {
776           (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
777             scale,channel_statistics);
778           (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
779             scale,channel_statistics);
780           (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
781             scale,channel_statistics);
782           break;
783         }
784         case CMYKColorspace:
785         {
786           (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
787             scale,channel_statistics);
788           (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
789             scale,channel_statistics);
790           (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
791             scale,channel_statistics);
792           (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
793             scale,channel_statistics);
794           break;
795         }
796         case GRAYColorspace:
797         {
798           (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
799             scale,channel_statistics);
800           break;
801         }
802       }
803       if (image->alpha_trait == BlendPixelTrait)
804         (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
805           scale,channel_statistics);
806       if (colorspace != GRAYColorspace)
807         {
808           (void) FormatLocaleFile(file,"  Image statistics:\n");
809           (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
810             "Overall",1.0/scale,channel_statistics);
811         }
812       channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
813         channel_statistics);
814     }
815   if (channel_moments != (ChannelMoments *) NULL)
816     {
817       scale=(double) ((1UL << image->depth)-1);
818       (void) FormatLocaleFile(file,"  Channel moments:\n");
819       switch (colorspace)
820       {
821         case RGBColorspace:
822         default:
823         {
824           (void) PrintChannelMoments(file,RedPixelChannel,"Red",scale,
825             channel_moments);
826           (void) PrintChannelMoments(file,GreenPixelChannel,"Green",scale,
827             channel_moments);
828           (void) PrintChannelMoments(file,BluePixelChannel,"Blue",scale,
829             channel_moments);
830           break;
831         }
832         case CMYKColorspace:
833         {
834           (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",scale,
835             channel_moments);
836           (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",scale,
837             channel_moments);
838           (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",scale,
839             channel_moments);
840           (void) PrintChannelMoments(file,BlackPixelChannel,"Black",scale,
841             channel_moments);
842           break;
843         }
844         case GRAYColorspace:
845         {
846           (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",scale,
847             channel_moments);
848           break;
849         }
850       }
851       if (image->alpha_trait == BlendPixelTrait)
852         (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",scale,
853           channel_moments);
854       if (colorspace != GRAYColorspace)
855         {
856           (void) FormatLocaleFile(file,"  Image moments:\n");
857           (void) PrintChannelMoments(file,(PixelChannel) MaxPixelChannels,
858             "Overall",scale,channel_moments);
859         }
860       channel_moments=(ChannelMoments *) RelinquishMagickMemory(
861         channel_moments);
862     }
863   if (channel_phash != (ChannelPerceptualHash *) NULL)
864     {
865       (void) FormatLocaleFile(file,"  Channel perceptual hash:\n");
866       (void) PrintChannelPerceptualHash(file,RedPixelChannel,"Red, Hue",
867         channel_phash);
868       (void) PrintChannelPerceptualHash(file,GreenPixelChannel,"Green, Chroma",
869         channel_phash);
870       (void) PrintChannelPerceptualHash(file,BluePixelChannel,"Blue, Luma",
871         channel_phash);
872       if (image->alpha_trait == BlendPixelTrait)
873         (void) PrintChannelPerceptualHash(file,AlphaPixelChannel,"Alpha, Alpha",
874           channel_phash);
875       channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
876         channel_phash);
877     }
878   if (channel_features != (ChannelFeatures *) NULL)
879     {
880       (void) FormatLocaleFile(file,"  Channel features (horizontal, vertical, "
881         "left and right diagonals, average):\n");
882       switch (colorspace)
883       {
884         case RGBColorspace:
885         default:
886         {
887           (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
888             channel_features);
889           (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
890             channel_features);
891           (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
892             channel_features);
893           break;
894         }
895         case CMYKColorspace:
896         {
897           (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
898             channel_features);
899           (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
900             channel_features);
901           (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
902             channel_features);
903           (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
904             channel_features);
905           break;
906         }
907         case GRAYColorspace:
908         {
909           (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
910             channel_features);
911           break;
912         }
913       }
914       if (image->alpha_trait == BlendPixelTrait)
915         (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
916           channel_features);
917       channel_features=(ChannelFeatures *) RelinquishMagickMemory(
918         channel_features);
919     }
920   if (ping == MagickFalse)
921     {
922       if (image->colorspace == CMYKColorspace)
923         (void) FormatLocaleFile(file,"  Total ink density: %*g%%\n",
924           GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
925           (double) QuantumRange);
926       x=0;
927       if (image->alpha_trait == BlendPixelTrait)
928         {
929           register const Quantum
930             *p;
931
932           p=(const Quantum *) NULL;
933           for (y=0; y < (ssize_t) image->rows; y++)
934           {
935             p=GetVirtualPixels(image,0,y,image->columns,1,exception);
936             if (p == (const Quantum *) NULL)
937               break;
938             for (x=0; x < (ssize_t) image->columns; x++)
939             {
940               if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
941                 break;
942               p+=GetPixelChannels(image);
943             }
944             if (x < (ssize_t) image->columns)
945               break;
946           }
947           if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
948             {
949               char
950                 tuple[MaxTextExtent];
951
952               PixelInfo
953                 pixel;
954
955               GetPixelInfo(image,&pixel);
956               GetPixelInfoPixel(image,p,&pixel);
957               (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
958                 exception);
959               (void) FormatLocaleFile(file,"  Alpha: %s ",tuple);
960               GetColorTuple(&pixel,MagickTrue,tuple);
961               (void) FormatLocaleFile(file,"  %s\n",tuple);
962             }
963         }
964       if (IsHistogramImage(image,exception) != MagickFalse)
965         {
966           (void) FormatLocaleFile(file,"  Colors: %.20g\n",(double)
967             GetNumberColors(image,(FILE *) NULL,exception));
968           (void) FormatLocaleFile(file,"  Histogram:\n");
969           (void) GetNumberColors(image,file,exception);
970         }
971       else
972         {
973           artifact=GetImageArtifact(image,"identify:unique-colors");
974           if (IfMagickTrue(IsStringTrue(artifact)))
975             (void) FormatLocaleFile(file,"  Colors: %.20g\n",(double)
976               GetNumberColors(image,(FILE *) NULL,exception));
977         }
978     }
979   if (image->storage_class == PseudoClass)
980     {
981       (void) FormatLocaleFile(file,"  Colormap entries: %.20g\n",(double)
982         image->colors);
983       (void) FormatLocaleFile(file,"  Colormap:\n");
984       if (image->colors <= 1024)
985         {
986           char
987             color[MaxTextExtent],
988             hex[MaxTextExtent],
989             tuple[MaxTextExtent];
990
991           PixelInfo
992             pixel;
993
994           register PixelInfo
995             *restrict p;
996
997           GetPixelInfo(image,&pixel);
998           p=image->colormap;
999           for (i=0; i < (ssize_t) image->colors; i++)
1000           {
1001             pixel=(*p);
1002             (void) CopyMagickString(tuple,"(",MaxTextExtent);
1003             ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
1004               tuple);
1005             (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1006             ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
1007               tuple);
1008             (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1009             ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
1010               tuple);
1011             if (pixel.colorspace == CMYKColorspace)
1012               {
1013                 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1014                 ConcatenateColorComponent(&pixel,BlackPixelChannel,
1015                   X11Compliance,tuple);
1016               }
1017             if (pixel.alpha_trait == BlendPixelTrait)
1018               {
1019                 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
1020                 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
1021                   X11Compliance,tuple);
1022               }
1023             (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
1024             (void) QueryColorname(image,&pixel,SVGCompliance,color,
1025               exception);
1026             GetColorTuple(&pixel,MagickTrue,hex);
1027             (void) FormatLocaleFile(file,"  %8ld: %s %s %s\n",(long) i,tuple,
1028               hex,color);
1029             p++;
1030           }
1031         }
1032     }
1033   if (image->error.mean_error_per_pixel != 0.0)
1034     (void) FormatLocaleFile(file,"  Mean error per pixel: %g\n",
1035       image->error.mean_error_per_pixel);
1036   if (image->error.normalized_mean_error != 0.0)
1037     (void) FormatLocaleFile(file,"  Normalized mean error: %g\n",
1038       image->error.normalized_mean_error);
1039   if (image->error.normalized_maximum_error != 0.0)
1040     (void) FormatLocaleFile(file,"  Normalized maximum error: %g\n",
1041       image->error.normalized_maximum_error);
1042   (void) FormatLocaleFile(file,"  Rendering intent: %s\n",
1043     CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1044     image->rendering_intent));
1045   if (image->gamma != 0.0)
1046     (void) FormatLocaleFile(file,"  Gamma: %g\n",image->gamma);
1047   if ((image->chromaticity.red_primary.x != 0.0) ||
1048       (image->chromaticity.green_primary.x != 0.0) ||
1049       (image->chromaticity.blue_primary.x != 0.0) ||
1050       (image->chromaticity.white_point.x != 0.0))
1051     {
1052       /*
1053         Display image chromaticity.
1054       */
1055       (void) FormatLocaleFile(file,"  Chromaticity:\n");
1056       (void) FormatLocaleFile(file,"    red primary: (%g,%g)\n",
1057         image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
1058       (void) FormatLocaleFile(file,"    green primary: (%g,%g)\n",
1059         image->chromaticity.green_primary.x,
1060         image->chromaticity.green_primary.y);
1061       (void) FormatLocaleFile(file,"    blue primary: (%g,%g)\n",
1062         image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
1063       (void) FormatLocaleFile(file,"    white point: (%g,%g)\n",
1064         image->chromaticity.white_point.x,image->chromaticity.white_point.y);
1065     }
1066   if ((image->extract_info.width*image->extract_info.height) != 0)
1067     (void) FormatLocaleFile(file,"  Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
1068       (double) image->extract_info.width,(double) image->extract_info.height,
1069       (double) image->extract_info.x,(double) image->extract_info.y);
1070   (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
1071     exception);
1072   (void) FormatLocaleFile(file,"  Background color: %s\n",color);
1073   (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
1074     exception);
1075   (void) FormatLocaleFile(file,"  Border color: %s\n",color);
1076   (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
1077     exception);
1078   (void) FormatLocaleFile(file,"  Matte color: %s\n",color);
1079   (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
1080     exception);
1081   (void) FormatLocaleFile(file,"  Transparent color: %s\n",color);
1082   (void) FormatLocaleFile(file,"  Interlace: %s\n",CommandOptionToMnemonic(
1083     MagickInterlaceOptions,(ssize_t) image->interlace));
1084   (void) FormatLocaleFile(file,"  Intensity: %s\n",CommandOptionToMnemonic(
1085     MagickPixelIntensityOptions,(ssize_t) image->intensity));
1086   (void) FormatLocaleFile(file,"  Compose: %s\n",CommandOptionToMnemonic(
1087     MagickComposeOptions,(ssize_t) image->compose));
1088   if ((image->page.width != 0) || (image->page.height != 0) ||
1089       (image->page.x != 0) || (image->page.y != 0))
1090     (void) FormatLocaleFile(file,"  Page geometry: %.20gx%.20g%+.20g%+.20g\n",
1091       (double) image->page.width,(double) image->page.height,(double)
1092       image->page.x,(double) image->page.y);
1093   if ((image->page.x != 0) || (image->page.y != 0))
1094     (void) FormatLocaleFile(file,"  Origin geometry: %+.20g%+.20g\n",(double)
1095       image->page.x,(double) image->page.y);
1096   (void) FormatLocaleFile(file,"  Dispose: %s\n",CommandOptionToMnemonic(
1097     MagickDisposeOptions,(ssize_t) image->dispose));
1098   if (image->delay != 0)
1099     (void) FormatLocaleFile(file,"  Delay: %.20gx%.20g\n",(double) image->delay,
1100       (double) image->ticks_per_second);
1101   if (image->iterations != 1)
1102     (void) FormatLocaleFile(file,"  Iterations: %.20g\n",(double)
1103       image->iterations);
1104   if (image->duration != 0)
1105     (void) FormatLocaleFile(file,"  Duration: %.20g\n",(double)
1106       image->duration);
1107   if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
1108     (void) FormatLocaleFile(file,"  Scene: %.20g of %.20g\n",(double)
1109       image->scene,(double) GetImageListLength(image));
1110   else
1111     if (image->scene != 0)
1112       (void) FormatLocaleFile(file,"  Scene: %.20g\n",(double) image->scene);
1113   (void) FormatLocaleFile(file,"  Compression: %s\n",CommandOptionToMnemonic(
1114     MagickCompressOptions,(ssize_t) image->compression));
1115   if (image->quality != UndefinedCompressionQuality)
1116     (void) FormatLocaleFile(file,"  Quality: %.20g\n",(double) image->quality);
1117   (void) FormatLocaleFile(file,"  Orientation: %s\n",CommandOptionToMnemonic(
1118     MagickOrientationOptions,(ssize_t) image->orientation));
1119   if (image->montage != (char *) NULL)
1120     (void) FormatLocaleFile(file,"  Montage: %s\n",image->montage);
1121   if (image->directory != (char *) NULL)
1122     {
1123       Image
1124         *tile;
1125
1126       ImageInfo
1127         *image_info;
1128
1129       register char
1130         *p,
1131         *q;
1132
1133       WarningHandler
1134         handler;
1135
1136       /*
1137         Display visual image directory.
1138       */
1139       image_info=AcquireImageInfo();
1140       (void) CloneString(&image_info->size,"64x64");
1141       (void) FormatLocaleFile(file,"  Directory:\n");
1142       for (p=image->directory; *p != '\0'; p++)
1143       {
1144         q=p;
1145         while ((*q != '\n') && (*q != '\0'))
1146           q++;
1147         (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
1148         p=q;
1149         (void) FormatLocaleFile(file,"    %s",image_info->filename);
1150         handler=SetWarningHandler((WarningHandler) NULL);
1151         tile=ReadImage(image_info,exception);
1152         (void) SetWarningHandler(handler);
1153         if (tile == (Image *) NULL)
1154           {
1155             (void) FormatLocaleFile(file,"\n");
1156             continue;
1157           }
1158         (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1159           tile->magick_columns,(double) tile->magick_rows,tile->magick);
1160         (void) SignatureImage(tile,exception);
1161         ResetImagePropertyIterator(tile);
1162         property=GetNextImageProperty(tile);
1163         while (property != (const char *) NULL)
1164         {
1165           (void) FormatLocaleFile(file,"  %s:\n",property);
1166           value=GetImageProperty(tile,property,exception);
1167           if (value != (const char *) NULL)
1168             (void) FormatLocaleFile(file,"%s\n",value);
1169           property=GetNextImageProperty(tile);
1170         }
1171         tile=DestroyImage(tile);
1172       }
1173       image_info=DestroyImageInfo(image_info);
1174     }
1175   (void) GetImageProperty(image,"exif:*",exception);
1176   (void) GetImageProperty(image,"icc:*",exception);
1177   (void) GetImageProperty(image,"iptc:*",exception);
1178   (void) GetImageProperty(image,"xmp:*",exception);
1179   ResetImagePropertyIterator(image);
1180   property=GetNextImageProperty(image);
1181   if (property != (const char *) NULL)
1182     {
1183       /*
1184         Display image properties.
1185       */
1186       (void) FormatLocaleFile(file,"  Properties:\n");
1187       while (property != (const char *) NULL)
1188       {
1189         (void) FormatLocaleFile(file,"    %s: ",property);
1190         value=GetImageProperty(image,property,exception);
1191         if (value != (const char *) NULL)
1192           (void) FormatLocaleFile(file,"%s\n",value);
1193         property=GetNextImageProperty(image);
1194       }
1195     }
1196   (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
1197   value=GetImageProperty(image,key,exception);
1198   if (value != (const char *) NULL)
1199     {
1200       /*
1201         Display clipping path.
1202       */
1203       (void) FormatLocaleFile(file,"  Clipping path: ");
1204       if (strlen(value) > 80)
1205         (void) fputc('\n',file);
1206       (void) FormatLocaleFile(file,"%s\n",value);
1207     }
1208   ResetImageProfileIterator(image);
1209   name=GetNextImageProfile(image);
1210   if (name != (char *) NULL)
1211     {
1212       const StringInfo
1213         *profile;
1214
1215       /*
1216         Identify image profiles.
1217       */
1218       (void) FormatLocaleFile(file,"  Profiles:\n");
1219       while (name != (char *) NULL)
1220       {
1221         profile=GetImageProfile(image,name);
1222         if (profile == (StringInfo *) NULL)
1223           continue;
1224         (void) FormatLocaleFile(file,"    Profile-%s: %.20g bytes\n",name,
1225           (double) GetStringInfoLength(profile));
1226         if (LocaleCompare(name,"iptc") == 0)
1227           {
1228             char
1229               *attribute,
1230               **attribute_list;
1231
1232             const char
1233               *tag;
1234
1235             long
1236               dataset,
1237               record,
1238               sentinel;
1239
1240             register ssize_t
1241               j;
1242
1243             size_t
1244               length,
1245               profile_length;
1246
1247             profile_length=GetStringInfoLength(profile);
1248             for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
1249             {
1250               length=1;
1251               sentinel=GetStringInfoDatum(profile)[i++];
1252               if (sentinel != 0x1c)
1253                 continue;
1254               dataset=GetStringInfoDatum(profile)[i++];
1255               record=GetStringInfoDatum(profile)[i++];
1256               switch (record)
1257               {
1258                 case 5: tag="Image Name"; break;
1259                 case 7: tag="Edit Status"; break;
1260                 case 10: tag="Priority"; break;
1261                 case 15: tag="Category"; break;
1262                 case 20: tag="Supplemental Category"; break;
1263                 case 22: tag="Fixture Identifier"; break;
1264                 case 25: tag="Keyword"; break;
1265                 case 30: tag="Release Date"; break;
1266                 case 35: tag="Release Time"; break;
1267                 case 40: tag="Special Instructions"; break;
1268                 case 45: tag="Reference Service"; break;
1269                 case 47: tag="Reference Date"; break;
1270                 case 50: tag="Reference Number"; break;
1271                 case 55: tag="Created Date"; break;
1272                 case 60: tag="Created Time"; break;
1273                 case 65: tag="Originating Program"; break;
1274                 case 70: tag="Program Version"; break;
1275                 case 75: tag="Object Cycle"; break;
1276                 case 80: tag="Byline"; break;
1277                 case 85: tag="Byline Title"; break;
1278                 case 90: tag="City"; break;
1279                 case 95: tag="Province State"; break;
1280                 case 100: tag="Country Code"; break;
1281                 case 101: tag="Country"; break;
1282                 case 103: tag="Original Transmission Reference"; break;
1283                 case 105: tag="Headline"; break;
1284                 case 110: tag="Credit"; break;
1285                 case 115: tag="Src"; break;
1286                 case 116: tag="Copyright String"; break;
1287                 case 120: tag="Caption"; break;
1288                 case 121: tag="Local Caption"; break;
1289                 case 122: tag="Caption Writer"; break;
1290                 case 200: tag="Custom Field 1"; break;
1291                 case 201: tag="Custom Field 2"; break;
1292                 case 202: tag="Custom Field 3"; break;
1293                 case 203: tag="Custom Field 4"; break;
1294                 case 204: tag="Custom Field 5"; break;
1295                 case 205: tag="Custom Field 6"; break;
1296                 case 206: tag="Custom Field 7"; break;
1297                 case 207: tag="Custom Field 8"; break;
1298                 case 208: tag="Custom Field 9"; break;
1299                 case 209: tag="Custom Field 10"; break;
1300                 case 210: tag="Custom Field 11"; break;
1301                 case 211: tag="Custom Field 12"; break;
1302                 case 212: tag="Custom Field 13"; break;
1303                 case 213: tag="Custom Field 14"; break;
1304                 case 214: tag="Custom Field 15"; break;
1305                 case 215: tag="Custom Field 16"; break;
1306                 case 216: tag="Custom Field 17"; break;
1307                 case 217: tag="Custom Field 18"; break;
1308                 case 218: tag="Custom Field 19"; break;
1309                 case 219: tag="Custom Field 20"; break;
1310                 default: tag="unknown"; break;
1311               }
1312               (void) FormatLocaleFile(file,"      %s[%.20g,%.20g]: ",tag,
1313                 (double) dataset,(double) record);
1314               length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1315               length|=GetStringInfoDatum(profile)[i++];
1316               attribute=(char *) NULL;
1317               if (~length >= (MaxTextExtent-1))
1318                 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1319                   sizeof(*attribute));
1320               if (attribute != (char *) NULL)
1321                 {
1322                   (void) CopyMagickString(attribute,(char *)
1323                     GetStringInfoDatum(profile)+i,length+1);
1324                   attribute_list=StringToList(attribute);
1325                   if (attribute_list != (char **) NULL)
1326                     {
1327                       for (j=0; attribute_list[j] != (char *) NULL; j++)
1328                       {
1329                         (void) fputs(attribute_list[j],file);
1330                         (void) fputs("\n",file);
1331                         attribute_list[j]=(char *) RelinquishMagickMemory(
1332                           attribute_list[j]);
1333                       }
1334                       attribute_list=(char **) RelinquishMagickMemory(
1335                         attribute_list);
1336                     }
1337                   attribute=DestroyString(attribute);
1338                 }
1339             }
1340           }
1341         if (image->debug != MagickFalse)
1342           PrintStringInfo(file,name,profile);
1343         name=GetNextImageProfile(image);
1344       }
1345     }
1346   ResetImageArtifactIterator(image);
1347   artifact=GetNextImageArtifact(image);
1348   if (artifact != (const char *) NULL)
1349     {
1350       /*
1351         Display image artifacts.
1352       */
1353       (void) FormatLocaleFile(file,"  Artifacts:\n");
1354       while (artifact != (const char *) NULL)
1355       {
1356         (void) FormatLocaleFile(file,"    %s: ",artifact);
1357         value=GetImageArtifact(image,artifact);
1358         if (value != (const char *) NULL)
1359           (void) FormatLocaleFile(file,"%s\n",value);
1360         artifact=GetNextImageArtifact(image);
1361       }
1362     }
1363   ResetImageRegistryIterator();
1364   registry=GetNextImageRegistry();
1365   if (registry != (const char *) NULL)
1366     {
1367       /*
1368         Display image registry.
1369       */
1370       (void) FormatLocaleFile(file,"  Registry:\n");
1371       while (registry != (const char *) NULL)
1372       {
1373         (void) FormatLocaleFile(file,"    %s: ",registry);
1374         value=(const char *) GetImageRegistry(StringRegistryType,registry,
1375           exception);
1376         if (value != (const char *) NULL)
1377           (void) FormatLocaleFile(file,"%s\n",value);
1378         registry=GetNextImageRegistry();
1379       }
1380     }
1381   (void) FormatLocaleFile(file,"  Tainted: %s\n",CommandOptionToMnemonic(
1382     MagickBooleanOptions,(ssize_t) image->taint));
1383   (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
1384   (void) FormatLocaleFile(file,"  Filesize: %s\n",format);
1385   (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
1386     MagickFalse,format);
1387   if (strlen(format) > 1)
1388     format[strlen(format)-1]='\0';
1389   (void) FormatLocaleFile(file,"  Number pixels: %s\n",format);
1390   (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
1391     elapsed_time+0.5),MagickFalse,format);
1392   (void) FormatLocaleFile(file,"  Pixels per second: %s\n",format);
1393   (void) FormatLocaleFile(file,"  User time: %0.3fu\n",user_time);
1394   (void) FormatLocaleFile(file,"  Elapsed time: %lu:%02lu.%03lu\n",
1395     (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1396     60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
1397   (void) FormatLocaleFile(file,"  Version: %s\n",GetMagickVersion((size_t *)
1398     NULL));
1399   (void) fflush(file);
1400   return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1401 }