blob: 0c79bf9da73e3d996887a04b8b9d659d3012d51a [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
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% John Cristy %
17% September 1994 %
18% %
19% %
cristy1a780952013-02-10 17:15:30 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% 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*/
cristy4c08aed2011-07-01 19:47:50 +000045#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"
cristy63a81872012-03-22 15:52:52 +000094#include "MagickCore/token.h"
cristy4c08aed2011-07-01 19:47:50 +000095#include "MagickCore/utility.h"
cristyd1dd6e42011-09-04 01:46:08 +000096#include "MagickCore/utility-private.h"
cristy4c08aed2011-07-01 19:47:50 +000097#include "MagickCore/version.h"
cristy3ed852e2009-09-05 21:47:34 +000098#if defined(MAGICKCORE_LCMS_DELEGATE)
cristyd09bcf92010-03-25 03:04:45 +000099#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)
cristy3ed852e2009-09-05 21:47:34 +0000104#include <lcms/lcms.h>
105#else
106#include "lcms.h"
107#endif
108#endif
109
110/*
cristyd09bcf92010-03-25 03:04:45 +0000111 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/*
cristy3ed852e2009-09-05 21:47:34 +0000120%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
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,
cristya4037272011-08-28 15:11:39 +0000136% const MagickBooleanType verbose,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000137%
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%
cristya4037272011-08-28 15:11:39 +0000147% o exception: return any errors or warnings in this structure.
148%
cristy3ed852e2009-09-05 21:47:34 +0000149*/
150
cristyf61a67f2013-09-02 19:22:54 +0000151static MagickBooleanType GetChannelStatistics(const Image *image,
152 const StatisticType type,double *channel_statistics,ExceptionInfo *exception)
153{
154 MagickStatusType
155 status;
156
157 register ssize_t
158 i;
159
160 ssize_t
161 y;
162
163 if (image->debug != MagickFalse)
164 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
165 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
166 switch (type)
167 {
168 case MaximumStatistic:
169 default:
170 {
171 channel_statistics[i]=(-MagickHuge);
172 break;
173 }
174 case MeanStatistic:
175 {
176 channel_statistics[i]=0.0;
177 break;
178 }
179 case MinimumStatistic:
180 {
181 channel_statistics[i]=MagickHuge;
182 break;
183 }
184 }
185 for (y=0; y < (ssize_t) image->rows; y++)
186 {
187 register const Quantum
188 *restrict p;
189
190 register ssize_t
191 x;
192
193 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
194 if (p == (const Quantum *) NULL)
195 break;
196 for (x=0; x < (ssize_t) image->columns; x++)
197 {
198 register ssize_t
199 i;
200
201 if (GetPixelReadMask(image,p) == 0)
202 {
203 p+=GetPixelChannels(image);
204 continue;
205 }
206 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
207 {
208 PixelChannel channel=GetPixelChannelChannel(image,i);
209 PixelTrait traits=GetPixelChannelTraits(image,channel);
210 if (traits == UndefinedPixelTrait)
211 continue;
212 switch (type)
213 {
214 case MaximumStatistic:
215 default:
216 {
217 if ((double) p[i] > channel_statistics[i])
218 channel_statistics[i]=(double) p[i];
219 break;
220 }
221 case MinimumStatistic:
222 {
223 if ((double) p[i] < channel_statistics[i])
224 channel_statistics[i]=(double) p[i];
225 break;
226 }
227 }
228 }
229 p+=GetPixelChannels(image);
230 }
231 }
232 return(y < (ssize_t) image->rows ? MagickFalse : MagickTrue);
233}
cristy95a072b2011-10-13 18:03:11 +0000234static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
cristye1897792010-01-29 02:05:50 +0000235 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000236{
cristye1897792010-01-29 02:05:50 +0000237#define PrintFeature(feature) \
238 GetMagickPrecision(),(feature)[0], \
239 GetMagickPrecision(),(feature)[1], \
240 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000241 GetMagickPrecision(),(feature)[3], \
242 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000243
cristybd822072010-01-27 00:30:00 +0000244#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000245 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000246 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000247 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000248 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000249 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000250 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000251 " Sum of Squares: Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000252 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000253 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000254 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000255 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000256 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000257 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000258 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000259 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000260 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000261 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000262 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000263 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000264 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000265 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000266 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000267 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000268 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000269 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000270 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000271 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000272 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000273
cristy20ec7592011-05-29 01:28:05 +0000274 ssize_t
275 n;
cristybd822072010-01-27 00:30:00 +0000276
cristy20ec7592011-05-29 01:28:05 +0000277 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000278 PrintFeature(channel_features[channel].angular_second_moment),
279 PrintFeature(channel_features[channel].contrast),
280 PrintFeature(channel_features[channel].correlation),
281 PrintFeature(channel_features[channel].variance_sum_of_squares),
282 PrintFeature(channel_features[channel].inverse_difference_moment),
283 PrintFeature(channel_features[channel].sum_average),
284 PrintFeature(channel_features[channel].sum_variance),
285 PrintFeature(channel_features[channel].sum_entropy),
286 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000287 PrintFeature(channel_features[channel].difference_variance),
288 PrintFeature(channel_features[channel].difference_entropy),
289 PrintFeature(channel_features[channel].measure_of_correlation_1),
290 PrintFeature(channel_features[channel].measure_of_correlation_2),
291 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000292 return(n);
cristybd822072010-01-27 00:30:00 +0000293}
294
cristy7d8529e2013-09-01 17:03:36 +0000295static ssize_t PrintChannelLocations(FILE *file,const Image *image,
cristyf61a67f2013-09-02 19:22:54 +0000296 const PixelChannel channel,const char *name,const double *channel_statistics,
297 const size_t max_locations)
cristy7d8529e2013-09-01 17:03:36 +0000298{
cristy7d8529e2013-09-01 17:03:36 +0000299 ExceptionInfo
300 *exception;
301
302 ssize_t
303 n,
cristyf61a67f2013-09-02 19:22:54 +0000304 offset,
cristy7d8529e2013-09-01 17:03:36 +0000305 y;
cristy858ba702013-09-01 18:47:18 +0000306
cristyf61a67f2013-09-02 19:22:54 +0000307 offset=GetPixelChannelOffset(image,channel);
cristya1b14862013-09-01 23:53:47 +0000308 (void) FormatLocaleFile(file," %s: %.*g (%.*g)",name,GetMagickPrecision(),
cristyf61a67f2013-09-02 19:22:54 +0000309 channel_statistics[offset],GetMagickPrecision(),QuantumScale*
310 channel_statistics[offset]);
cristy7d8529e2013-09-01 17:03:36 +0000311 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 x;
320
321 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
322 if (p == (const Quantum *) NULL)
323 break;
324 for (x=0; x < (ssize_t) image->columns; x++)
325 {
326 MagickBooleanType
327 match;
328
329 PixelTrait traits=GetPixelChannelTraits(image,channel);
330 if (traits == UndefinedPixelTrait)
331 continue;
cristyf61a67f2013-09-02 19:22:54 +0000332 match=fabs((double) p[offset]-channel_statistics[offset]) < 0.5 ?
333 MagickTrue : MagickFalse;
cristy7d8529e2013-09-01 17:03:36 +0000334 if (match != MagickFalse)
335 {
336 if ((max_locations != 0) && (n >= max_locations))
337 break;
338 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
339 n++;
340 }
cristy858ba702013-09-01 18:47:18 +0000341 p+=GetPixelChannels(image);
cristy7d8529e2013-09-01 17:03:36 +0000342 }
343 if (x < (ssize_t) image->columns)
344 break;
345 }
346 (void) FormatLocaleFile(file,"\n");
347 return(n);
348}
349
cristy95a072b2011-10-13 18:03:11 +0000350static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000351 const char *name,const double scale,
352 const ChannelStatistics *channel_statistics)
353{
354#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000355 " (%g)\n max: " QuantumFormat " (%g)\n" \
356 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
357 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000358
cristy20ec7592011-05-29 01:28:05 +0000359 ssize_t
360 n;
cristybd822072010-01-27 00:30:00 +0000361
cristy20ec7592011-05-29 01:28:05 +0000362 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000363 channel_statistics[channel].minima),channel_statistics[channel].minima/
364 (double) QuantumRange,ClampToQuantum(scale*
365 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
366 (double) QuantumRange,scale*channel_statistics[channel].mean,
367 channel_statistics[channel].mean/(double) QuantumRange,scale*
368 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000369 channel_statistics[channel].standard_deviation/(double) QuantumRange,
370 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000371 return(n);
cristybd822072010-01-27 00:30:00 +0000372}
373
374MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000375 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000376{
cristy3ed852e2009-09-05 21:47:34 +0000377 char
378 color[MaxTextExtent],
379 format[MaxTextExtent],
380 key[MaxTextExtent];
381
cristybd822072010-01-27 00:30:00 +0000382 ChannelFeatures
383 *channel_features;
384
385 ChannelStatistics
386 *channel_statistics;
387
cristy3ed852e2009-09-05 21:47:34 +0000388 ColorspaceType
389 colorspace;
390
391 const char
392 *artifact,
cristy7d8529e2013-09-01 17:03:36 +0000393 *locate,
cristy3ed852e2009-09-05 21:47:34 +0000394 *name,
395 *property,
396 *registry,
397 *value;
398
399 const MagickInfo
400 *magick_info;
401
cristy3ed852e2009-09-05 21:47:34 +0000402 double
403 elapsed_time,
404 user_time;
405
cristy3ed852e2009-09-05 21:47:34 +0000406 ImageType
407 type;
408
cristy3ed852e2009-09-05 21:47:34 +0000409 MagickBooleanType
410 ping;
411
cristy4c08aed2011-07-01 19:47:50 +0000412 register const Quantum
413 *p;
414
cristybb503372010-05-27 20:51:26 +0000415 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000416 i,
417 x;
418
cristybb503372010-05-27 20:51:26 +0000419 size_t
cristybd822072010-01-27 00:30:00 +0000420 distance,
cristy3ed852e2009-09-05 21:47:34 +0000421 scale;
422
cristy9d314ff2011-03-09 01:30:28 +0000423 ssize_t
424 y;
425
cristy3ed852e2009-09-05 21:47:34 +0000426 assert(image != (Image *) NULL);
427 assert(image->signature == MagickSignature);
428 if (image->debug != MagickFalse)
429 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
430 if (file == (FILE *) NULL)
431 file=stdout;
cristy7d8529e2013-09-01 17:03:36 +0000432 locate=GetImageArtifact(image,"identify:locate");
433 if (locate != (const char *) NULL)
434 {
435 const char
436 *limit;
437
cristyf61a67f2013-09-02 19:22:54 +0000438 double
439 channel_statistics[MaxPixelChannels+1];
440
cristy7d8529e2013-09-01 17:03:36 +0000441 size_t
442 max_locations;
443
444 StatisticType
cristyf61a67f2013-09-02 19:22:54 +0000445 type;
cristy7d8529e2013-09-01 17:03:36 +0000446
447 /*
448 Display minimum, maximum, or mean pixel locations.
449 */
cristyf61a67f2013-09-02 19:22:54 +0000450 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
cristy7d8529e2013-09-01 17:03:36 +0000451 MagickFalse,locate);
452 limit=GetImageArtifact(image,"identify:limit");
453 max_locations=0;
454 if (limit != (const char *) NULL)
455 max_locations=StringToUnsignedLong(limit);
cristyf61a67f2013-09-02 19:22:54 +0000456 (void) GetChannelStatistics(image,type,channel_statistics,exception);
cristy7d8529e2013-09-01 17:03:36 +0000457 colorspace=image->colorspace;
458 if (IsImageGray(image,exception) != MagickFalse)
459 colorspace=GRAYColorspace;
460 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
461 switch (colorspace)
462 {
463 case RGBColorspace:
464 default:
465 {
cristycffbc332013-09-01 18:25:19 +0000466 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
cristyf61a67f2013-09-02 19:22:54 +0000467 channel_statistics,max_locations);
cristycffbc332013-09-01 18:25:19 +0000468 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
cristyf61a67f2013-09-02 19:22:54 +0000469 channel_statistics,max_locations);
cristycffbc332013-09-01 18:25:19 +0000470 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
cristyf61a67f2013-09-02 19:22:54 +0000471 channel_statistics,max_locations);
cristy7d8529e2013-09-01 17:03:36 +0000472 break;
473 }
474 case CMYKColorspace:
475 {
cristycffbc332013-09-01 18:25:19 +0000476 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
cristyf61a67f2013-09-02 19:22:54 +0000477 channel_statistics,max_locations);
cristycffbc332013-09-01 18:25:19 +0000478 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
cristyf61a67f2013-09-02 19:22:54 +0000479 channel_statistics,max_locations);
cristycffbc332013-09-01 18:25:19 +0000480 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
cristyf61a67f2013-09-02 19:22:54 +0000481 channel_statistics,max_locations);
cristycffbc332013-09-01 18:25:19 +0000482 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
cristyf61a67f2013-09-02 19:22:54 +0000483 channel_statistics,max_locations);
cristy7d8529e2013-09-01 17:03:36 +0000484 break;
485 }
486 case GRAYColorspace:
487 {
cristycffbc332013-09-01 18:25:19 +0000488 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
cristyf61a67f2013-09-02 19:22:54 +0000489 channel_statistics,max_locations);
cristy7d8529e2013-09-01 17:03:36 +0000490 break;
491 }
492 }
493 if (image->alpha_trait == BlendPixelTrait)
cristycffbc332013-09-01 18:25:19 +0000494 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
cristyf61a67f2013-09-02 19:22:54 +0000495 channel_statistics,max_locations);
cristy7d8529e2013-09-01 17:03:36 +0000496 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
497 }
cristy3ed852e2009-09-05 21:47:34 +0000498 *format='\0';
499 elapsed_time=GetElapsedTime(&image->timer);
500 user_time=GetUserTime(&image->timer);
501 GetTimerInfo(&image->timer);
502 if (verbose == MagickFalse)
503 {
504 /*
505 Display summary info about the image.
506 */
507 if (*image->magick_filename != '\0')
508 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000509 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000510 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000511 (GetNextImageInList(image) == (Image *) NULL) &&
512 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000513 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000514 else
cristy1e604812011-05-19 18:07:50 +0000515 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
516 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000517 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000518 if ((image->magick_columns != 0) || (image->magick_rows != 0))
519 if ((image->magick_columns != image->columns) ||
520 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000521 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
522 image->magick_columns,(double) image->magick_rows);
523 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
524 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000525 if ((image->page.width != 0) || (image->page.height != 0) ||
526 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000527 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000528 image->page.width,(double) image->page.height,(double) image->page.x,
529 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000530 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000531 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000532 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
533 MagickTypeOptions,(ssize_t) image->type));
cristy479d4622012-08-22 13:03:27 +0000534 if (image->colorspace != UndefinedColorspace)
535 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
536 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000537 if (image->storage_class == DirectClass)
538 {
cristy3ed852e2009-09-05 21:47:34 +0000539 if (image->total_colors != 0)
540 {
cristyb9080c92009-12-01 20:13:26 +0000541 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000542 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000543 }
544 }
545 else
546 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000547 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000548 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000549 else
cristy479d4622012-08-22 13:03:27 +0000550 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000551 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000552 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000553 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000554 (image->error.mean_error_per_pixel+0.5),
555 image->error.normalized_mean_error,
556 image->error.normalized_maximum_error);
557 if (GetBlobSize(image) != 0)
558 {
cristyb9080c92009-12-01 20:13:26 +0000559 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000560 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000561 }
cristy1e604812011-05-19 18:07:50 +0000562 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
563 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
564 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
565 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000566 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000567 (void) fflush(file);
568 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
569 }
570 /*
571 Display verbose info about the image.
572 */
cristy4c08aed2011-07-01 19:47:50 +0000573 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000574 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000575 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000576 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000577 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000578 if (*image->magick_filename != '\0')
579 if (LocaleCompare(image->magick_filename,image->filename) != 0)
580 {
581 char
582 filename[MaxTextExtent];
583
584 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000585 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000586 }
cristya4037272011-08-28 15:11:39 +0000587 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000588 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000589 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000590 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000591 else
cristyb51dff52011-05-19 16:55:47 +0000592 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000593 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000594 if ((magick_info == (const MagickInfo *) NULL) ||
595 (GetMagickMimeType(magick_info) != (const char *) NULL))
596 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
dirk55584952013-08-09 18:54:28 +0000597 magick_info));
cristy1e604812011-05-19 18:07:50 +0000598 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
599 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000600 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000601 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
602 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000603 if ((image->magick_columns != 0) || (image->magick_rows != 0))
604 if ((image->magick_columns != image->columns) ||
605 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000606 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000607 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000608 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000609 {
cristy2a11bef2011-10-28 18:33:11 +0000610 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
611 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000612 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000613 image->columns/image->resolution.x,(double) image->rows/
614 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000615 }
cristyb51dff52011-05-19 16:55:47 +0000616 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000617 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000618 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
619 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000620 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000621 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000622 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000623 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000624 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000625 /*
626 Detail channel depth and extrema.
627 */
cristyb51dff52011-05-19 16:55:47 +0000628 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000629 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000630 channel_statistics=(ChannelStatistics *) NULL;
cristy15a88782010-01-31 23:24:49 +0000631 channel_features=(ChannelFeatures *) NULL;
632 colorspace=image->colorspace;
cristy564a5692012-01-20 23:56:26 +0000633 scale=1;
cristy3ed852e2009-09-05 21:47:34 +0000634 if (ping == MagickFalse)
635 {
cristybb503372010-05-27 20:51:26 +0000636 size_t
cristy3ed852e2009-09-05 21:47:34 +0000637 depth;
638
cristya4037272011-08-28 15:11:39 +0000639 channel_statistics=GetImageStatistics(image,exception);
cristy15a88782010-01-31 23:24:49 +0000640 artifact=GetImageArtifact(image,"identify:features");
641 if (artifact != (const char *) NULL)
642 {
643 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000644 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000645 }
cristya4037272011-08-28 15:11:39 +0000646 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000647 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000648 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
649 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000650 else
cristyb51dff52011-05-19 16:55:47 +0000651 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000652 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000653 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000654 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000655 colorspace=GRAYColorspace;
656 switch (colorspace)
657 {
658 case RGBColorspace:
659 default:
660 {
cristycffbc332013-09-01 18:25:19 +0000661 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000662 channel_statistics[RedPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000663 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000664 channel_statistics[GreenPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000665 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000666 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000667 break;
668 }
669 case CMYKColorspace:
670 {
cristycffbc332013-09-01 18:25:19 +0000671 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000672 channel_statistics[CyanPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000673 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000674 channel_statistics[MagentaPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000675 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000676 channel_statistics[YellowPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000677 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000678 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000679 break;
680 }
681 case GRAYColorspace:
682 {
cristycffbc332013-09-01 18:25:19 +0000683 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000684 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000685 break;
686 }
687 }
cristy8a46d822012-08-28 23:32:39 +0000688 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000689 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000690 channel_statistics[AlphaPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000691 scale=1;
692 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000693 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000694 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000695 }
696 if (channel_statistics != (ChannelStatistics *) NULL)
697 {
cristyb51dff52011-05-19 16:55:47 +0000698 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000699 (void) FormatLocaleFile(file," Pixels: %.20g\n",
700 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000701 switch (colorspace)
702 {
703 case RGBColorspace:
704 default:
705 {
cristy95a072b2011-10-13 18:03:11 +0000706 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
707 scale,channel_statistics);
708 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
709 scale,channel_statistics);
710 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
711 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000712 break;
713 }
714 case CMYKColorspace:
715 {
cristy95a072b2011-10-13 18:03:11 +0000716 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
717 scale,channel_statistics);
718 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
719 scale,channel_statistics);
720 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
721 scale,channel_statistics);
722 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
723 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000724 break;
725 }
726 case GRAYColorspace:
727 {
cristy95a072b2011-10-13 18:03:11 +0000728 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
729 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000730 break;
731 }
732 }
cristy8a46d822012-08-28 23:32:39 +0000733 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000734 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
735 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000736 if (colorspace != GRAYColorspace)
737 {
cristyb51dff52011-05-19 16:55:47 +0000738 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000739 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
740 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000741 }
742 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
743 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000744 }
cristybd822072010-01-27 00:30:00 +0000745 if (channel_features != (ChannelFeatures *) NULL)
746 {
cristy1e604812011-05-19 18:07:50 +0000747 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
748 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000749 switch (colorspace)
750 {
751 case RGBColorspace:
752 default:
cristy549a37e2010-01-26 15:24:15 +0000753 {
cristy95a072b2011-10-13 18:03:11 +0000754 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000755 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000756 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
757 channel_features);
758 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
759 channel_features);
cristybd822072010-01-27 00:30:00 +0000760 break;
761 }
762 case CMYKColorspace:
763 {
cristy95a072b2011-10-13 18:03:11 +0000764 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000765 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000766 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000767 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000768 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
769 channel_features);
770 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000771 channel_features);
772 break;
773 }
774 case GRAYColorspace:
775 {
cristy95a072b2011-10-13 18:03:11 +0000776 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
777 channel_features);
cristybd822072010-01-27 00:30:00 +0000778 break;
779 }
780 }
cristy8a46d822012-08-28 23:32:39 +0000781 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000782 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
783 channel_features);
cristybd822072010-01-27 00:30:00 +0000784 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
785 channel_features);
786 }
787 if (ping == MagickFalse)
788 {
cristy3ed852e2009-09-05 21:47:34 +0000789 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000790 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy7c3af952011-10-20 16:04:16 +0000791 GetImageTotalInkDensity(image,exception)/(double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000792 x=0;
cristy8a46d822012-08-28 23:32:39 +0000793 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000794 {
cristy4c08aed2011-07-01 19:47:50 +0000795 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000796 *p;
797
cristy4c08aed2011-07-01 19:47:50 +0000798 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000799 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000800 {
801 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000802 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000803 break;
cristybb503372010-05-27 20:51:26 +0000804 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000805 {
cristy4c08aed2011-07-01 19:47:50 +0000806 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000807 break;
cristyed231572011-07-14 02:18:59 +0000808 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000809 }
cristybb503372010-05-27 20:51:26 +0000810 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000811 break;
812 }
cristybb503372010-05-27 20:51:26 +0000813 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000814 {
815 char
816 tuple[MaxTextExtent];
817
cristy4c08aed2011-07-01 19:47:50 +0000818 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000819 pixel;
820
cristy4c08aed2011-07-01 19:47:50 +0000821 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000822 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000823 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000824 exception);
cristyb51dff52011-05-19 16:55:47 +0000825 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000826 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000827 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000828 }
829 }
cristya4037272011-08-28 15:11:39 +0000830 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000831 {
cristy4c967562011-06-16 01:46:57 +0000832 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000833 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000834 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000835 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000836 }
cristye64d6372012-12-07 18:56:48 +0000837 else
838 {
anthony6f201312012-03-30 04:08:15 +0000839 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000840 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000841 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
842 GetNumberColors(image,(FILE *) NULL,exception));
843 }
cristy3ed852e2009-09-05 21:47:34 +0000844 }
845 if (image->storage_class == PseudoClass)
846 {
cristy404558c2012-12-07 19:14:39 +0000847 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
848 image->colors);
cristye64d6372012-12-07 18:56:48 +0000849 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000850 if (image->colors <= 1024)
851 {
852 char
853 color[MaxTextExtent],
854 hex[MaxTextExtent],
855 tuple[MaxTextExtent];
856
cristy4c08aed2011-07-01 19:47:50 +0000857 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000858 pixel;
859
cristy101ab702011-10-13 13:06:32 +0000860 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000861 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000862
cristy4c08aed2011-07-01 19:47:50 +0000863 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000864 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000865 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000866 {
cristy9d8c8ce2011-10-25 16:13:52 +0000867 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000868 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000869 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000870 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000871 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000872 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000873 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000874 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000875 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000876 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000877 if (pixel.colorspace == CMYKColorspace)
878 {
879 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000880 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000881 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000882 }
cristy8a46d822012-08-28 23:32:39 +0000883 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000884 {
885 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000886 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000887 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000888 }
889 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000890 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000891 exception);
cristy3ed852e2009-09-05 21:47:34 +0000892 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000893 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
894 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000895 p++;
896 }
897 }
898 }
899 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000900 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000901 image->error.mean_error_per_pixel);
902 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000903 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000904 image->error.normalized_mean_error);
905 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000906 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000907 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +0000908 (void) FormatLocaleFile(file," Rendering intent: %s\n",
909 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
910 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +0000911 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000912 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +0000913 if ((image->chromaticity.red_primary.x != 0.0) ||
914 (image->chromaticity.green_primary.x != 0.0) ||
915 (image->chromaticity.blue_primary.x != 0.0) ||
916 (image->chromaticity.white_point.x != 0.0))
917 {
918 /*
919 Display image chromaticity.
920 */
cristyb51dff52011-05-19 16:55:47 +0000921 (void) FormatLocaleFile(file," Chromaticity:\n");
922 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000923 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000924 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000925 image->chromaticity.green_primary.x,
926 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000927 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000928 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000929 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000930 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
931 }
932 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +0000933 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
934 (double) image->extract_info.width,(double) image->extract_info.height,
935 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +0000936 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000937 exception);
cristyb51dff52011-05-19 16:55:47 +0000938 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000939 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000940 exception);
cristyb51dff52011-05-19 16:55:47 +0000941 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000942 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000943 exception);
cristyb51dff52011-05-19 16:55:47 +0000944 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000945 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000946 exception);
cristyb51dff52011-05-19 16:55:47 +0000947 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +0000948 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
949 MagickInterlaceOptions,(ssize_t) image->interlace));
950 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
951 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +0000952 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000953 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +0000954 if ((image->page.width != 0) || (image->page.height != 0) ||
955 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +0000956 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
957 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +0000958 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000959 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000960 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000961 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000962 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000963 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +0000964 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +0000965 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +0000966 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +0000967 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +0000968 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
969 image->iterations);
cristy3ed852e2009-09-05 21:47:34 +0000970 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +0000971 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
972 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000973 else
974 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +0000975 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
976 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000977 MagickCompressOptions,(ssize_t) image->compression));
cristy07f628a2013-08-20 11:43:55 +0000978 if (image->quality != UndefinedCompressionQuality)
cristy92beec62013-08-26 12:23:46 +0000979 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +0000980 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
981 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +0000982 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000983 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +0000984 if (image->directory != (char *) NULL)
985 {
986 Image
987 *tile;
988
989 ImageInfo
990 *image_info;
991
992 register char
993 *p,
994 *q;
995
996 WarningHandler
997 handler;
998
999 /*
1000 Display visual image directory.
1001 */
1002 image_info=AcquireImageInfo();
1003 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +00001004 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +00001005 for (p=image->directory; *p != '\0'; p++)
1006 {
1007 q=p;
1008 while ((*q != '\n') && (*q != '\0'))
1009 q++;
1010 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
1011 p=q;
cristyb51dff52011-05-19 16:55:47 +00001012 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +00001013 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +00001014 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001015 (void) SetWarningHandler(handler);
1016 if (tile == (Image *) NULL)
1017 {
cristyb51dff52011-05-19 16:55:47 +00001018 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +00001019 continue;
1020 }
cristy1e604812011-05-19 18:07:50 +00001021 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1022 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +00001023 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001024 ResetImagePropertyIterator(tile);
1025 property=GetNextImageProperty(tile);
1026 while (property != (const char *) NULL)
1027 {
cristyb51dff52011-05-19 16:55:47 +00001028 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +00001029 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001030 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001031 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001032 property=GetNextImageProperty(tile);
1033 }
1034 tile=DestroyImage(tile);
1035 }
1036 image_info=DestroyImageInfo(image_info);
1037 }
cristyd15e6592011-10-15 00:13:06 +00001038 (void) GetImageProperty(image,"exif:*",exception);
cristy3ed852e2009-09-05 21:47:34 +00001039 ResetImagePropertyIterator(image);
1040 property=GetNextImageProperty(image);
1041 if (property != (const char *) NULL)
1042 {
1043 /*
1044 Display image properties.
1045 */
cristyb51dff52011-05-19 16:55:47 +00001046 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +00001047 while (property != (const char *) NULL)
1048 {
cristyb51dff52011-05-19 16:55:47 +00001049 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +00001050 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001051 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001052 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001053 property=GetNextImageProperty(image);
1054 }
1055 }
cristyb51dff52011-05-19 16:55:47 +00001056 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +00001057 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +00001058 if (value != (const char *) NULL)
1059 {
1060 /*
1061 Display clipping path.
1062 */
cristyb51dff52011-05-19 16:55:47 +00001063 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +00001064 if (strlen(value) > 80)
1065 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +00001066 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001067 }
1068 ResetImageProfileIterator(image);
1069 name=GetNextImageProfile(image);
1070 if (name != (char *) NULL)
1071 {
1072 const StringInfo
1073 *profile;
1074
1075 /*
1076 Identify image profiles.
1077 */
cristyb51dff52011-05-19 16:55:47 +00001078 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +00001079 while (name != (char *) NULL)
1080 {
1081 profile=GetImageProfile(image,name);
1082 if (profile == (StringInfo *) NULL)
1083 continue;
cristy1e604812011-05-19 18:07:50 +00001084 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1085 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001086#if defined(MAGICKCORE_LCMS_DELEGATE)
1087 if ((LocaleCompare(name,"icc") == 0) ||
1088 (LocaleCompare(name,"icm") == 0))
1089 {
1090 cmsHPROFILE
1091 icc_profile;
1092
1093 icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile),
cristyd09bcf92010-03-25 03:04:45 +00001094 (cmsUInt32Number) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001095 if (icc_profile != (cmsHPROFILE *) NULL)
1096 {
cristyd09bcf92010-03-25 03:04:45 +00001097#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
cristy3ed852e2009-09-05 21:47:34 +00001098 const char
1099 *name;
1100
1101 name=cmsTakeProductName(icc_profile);
1102 if (name != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001103 (void) FormatLocaleFile(file," %s\n",name);
cristyd09bcf92010-03-25 03:04:45 +00001104#else
1105 char
1106 info[MaxTextExtent];
1107
1108 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription,
1109 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001110 (void) FormatLocaleFile(file," Description: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001111 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer,
1112 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001113 (void) FormatLocaleFile(file," Manufacturer: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001114 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en",
1115 "US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001116 (void) FormatLocaleFile(file," Model: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001117 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright,
1118 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001119 (void) FormatLocaleFile(file," Copyright: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001120#endif
cristy3ed852e2009-09-05 21:47:34 +00001121 (void) cmsCloseProfile(icc_profile);
1122 }
1123 }
1124#endif
1125 if (LocaleCompare(name,"iptc") == 0)
1126 {
1127 char
1128 *attribute,
1129 **attribute_list;
1130
1131 const char
1132 *tag;
1133
cristycee97112010-05-28 00:44:52 +00001134 long
cristy3ed852e2009-09-05 21:47:34 +00001135 dataset,
1136 record,
1137 sentinel;
1138
cristybb503372010-05-27 20:51:26 +00001139 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001140 j;
1141
1142 size_t
1143 length,
1144 profile_length;
1145
1146 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +00001147 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +00001148 {
1149 length=1;
1150 sentinel=GetStringInfoDatum(profile)[i++];
1151 if (sentinel != 0x1c)
1152 continue;
1153 dataset=GetStringInfoDatum(profile)[i++];
1154 record=GetStringInfoDatum(profile)[i++];
1155 switch (record)
1156 {
1157 case 5: tag="Image Name"; break;
1158 case 7: tag="Edit Status"; break;
1159 case 10: tag="Priority"; break;
1160 case 15: tag="Category"; break;
1161 case 20: tag="Supplemental Category"; break;
1162 case 22: tag="Fixture Identifier"; break;
1163 case 25: tag="Keyword"; break;
1164 case 30: tag="Release Date"; break;
1165 case 35: tag="Release Time"; break;
1166 case 40: tag="Special Instructions"; break;
1167 case 45: tag="Reference Service"; break;
1168 case 47: tag="Reference Date"; break;
1169 case 50: tag="Reference Number"; break;
1170 case 55: tag="Created Date"; break;
1171 case 60: tag="Created Time"; break;
1172 case 65: tag="Originating Program"; break;
1173 case 70: tag="Program Version"; break;
1174 case 75: tag="Object Cycle"; break;
1175 case 80: tag="Byline"; break;
1176 case 85: tag="Byline Title"; break;
1177 case 90: tag="City"; break;
1178 case 95: tag="Province State"; break;
1179 case 100: tag="Country Code"; break;
1180 case 101: tag="Country"; break;
1181 case 103: tag="Original Transmission Reference"; break;
1182 case 105: tag="Headline"; break;
1183 case 110: tag="Credit"; break;
1184 case 115: tag="Src"; break;
1185 case 116: tag="Copyright String"; break;
1186 case 120: tag="Caption"; break;
1187 case 121: tag="Local Caption"; break;
1188 case 122: tag="Caption Writer"; break;
1189 case 200: tag="Custom Field 1"; break;
1190 case 201: tag="Custom Field 2"; break;
1191 case 202: tag="Custom Field 3"; break;
1192 case 203: tag="Custom Field 4"; break;
1193 case 204: tag="Custom Field 5"; break;
1194 case 205: tag="Custom Field 6"; break;
1195 case 206: tag="Custom Field 7"; break;
1196 case 207: tag="Custom Field 8"; break;
1197 case 208: tag="Custom Field 9"; break;
1198 case 209: tag="Custom Field 10"; break;
1199 case 210: tag="Custom Field 11"; break;
1200 case 211: tag="Custom Field 12"; break;
1201 case 212: tag="Custom Field 13"; break;
1202 case 213: tag="Custom Field 14"; break;
1203 case 214: tag="Custom Field 15"; break;
1204 case 215: tag="Custom Field 16"; break;
1205 case 216: tag="Custom Field 17"; break;
1206 case 217: tag="Custom Field 18"; break;
1207 case 218: tag="Custom Field 19"; break;
1208 case 219: tag="Custom Field 20"; break;
1209 default: tag="unknown"; break;
1210 }
cristy1e604812011-05-19 18:07:50 +00001211 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1212 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001213 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1214 length|=GetStringInfoDatum(profile)[i++];
1215 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001216 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001217 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1218 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001219 if (attribute != (char *) NULL)
1220 {
1221 (void) CopyMagickString(attribute,(char *)
1222 GetStringInfoDatum(profile)+i,length+1);
1223 attribute_list=StringToList(attribute);
1224 if (attribute_list != (char **) NULL)
1225 {
1226 for (j=0; attribute_list[j] != (char *) NULL; j++)
1227 {
1228 (void) fputs(attribute_list[j],file);
1229 (void) fputs("\n",file);
1230 attribute_list[j]=(char *) RelinquishMagickMemory(
1231 attribute_list[j]);
1232 }
1233 attribute_list=(char **) RelinquishMagickMemory(
1234 attribute_list);
1235 }
1236 attribute=DestroyString(attribute);
1237 }
1238 }
1239 }
1240 if (image->debug != MagickFalse)
1241 PrintStringInfo(file,name,profile);
1242 name=GetNextImageProfile(image);
1243 }
1244 }
1245 ResetImageArtifactIterator(image);
1246 artifact=GetNextImageArtifact(image);
1247 if (artifact != (const char *) NULL)
1248 {
1249 /*
1250 Display image artifacts.
1251 */
cristyb51dff52011-05-19 16:55:47 +00001252 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001253 while (artifact != (const char *) NULL)
1254 {
cristyb51dff52011-05-19 16:55:47 +00001255 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001256 value=GetImageArtifact(image,artifact);
1257 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001258 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001259 artifact=GetNextImageArtifact(image);
1260 }
1261 }
1262 ResetImageRegistryIterator();
1263 registry=GetNextImageRegistry();
1264 if (registry != (const char *) NULL)
1265 {
1266 /*
1267 Display image registry.
1268 */
cristyb51dff52011-05-19 16:55:47 +00001269 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001270 while (registry != (const char *) NULL)
1271 {
cristyb51dff52011-05-19 16:55:47 +00001272 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001273 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001274 exception);
cristy3ed852e2009-09-05 21:47:34 +00001275 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001276 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001277 registry=GetNextImageRegistry();
1278 }
1279 }
cristyb51dff52011-05-19 16:55:47 +00001280 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001281 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001282 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001283 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001284 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001285 MagickFalse,format);
1286 if (strlen(format) > 1)
1287 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001288 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001289 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001290 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001291 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1292 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001293 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001294 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1295 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001296 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001297 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001298 (void) fflush(file);
1299 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1300}