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