blob: 001a88306e45c27f002380f42b54b1d232c241d8 [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
cristyab008852013-09-02 19:36:34 +0000151static ChannelStatistics *GetLocationStatistics(const Image *image,
152 const StatisticType type,ExceptionInfo *exception)
cristyf61a67f2013-09-02 19:22:54 +0000153{
cristyab008852013-09-02 19:36:34 +0000154 ChannelStatistics
155 *channel_statistics;
156
cristyf61a67f2013-09-02 19:22:54 +0000157 MagickStatusType
158 status;
159
160 register ssize_t
161 i;
162
163 ssize_t
164 y;
165
cristyab008852013-09-02 19:36:34 +0000166 assert(image != (Image *) NULL);
167 assert(image->signature == MagickSignature);
cristyf61a67f2013-09-02 19:22:54 +0000168 if (image->debug != MagickFalse)
169 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristyab008852013-09-02 19:36:34 +0000170 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
171 MaxPixelChannels+1,sizeof(*channel_statistics));
172 if (channel_statistics == (ChannelStatistics *) NULL)
173 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
174 (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
175 sizeof(*channel_statistics));
cristyf61a67f2013-09-02 19:22:54 +0000176 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
cristyab008852013-09-02 19:36:34 +0000177 {
cristyf61a67f2013-09-02 19:22:54 +0000178 switch (type)
179 {
180 case MaximumStatistic:
181 default:
182 {
cristyab008852013-09-02 19:36:34 +0000183 channel_statistics[i].maxima=(-MagickHuge);
cristyf61a67f2013-09-02 19:22:54 +0000184 break;
185 }
186 case MinimumStatistic:
187 {
cristyab008852013-09-02 19:36:34 +0000188 channel_statistics[i].minima=MagickHuge;
cristyf61a67f2013-09-02 19:22:54 +0000189 break;
190 }
191 }
cristyab008852013-09-02 19:36:34 +0000192 }
cristyf61a67f2013-09-02 19:22:54 +0000193 for (y=0; y < (ssize_t) image->rows; y++)
194 {
195 register const Quantum
196 *restrict p;
197
198 register ssize_t
199 x;
200
201 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
202 if (p == (const Quantum *) NULL)
203 break;
204 for (x=0; x < (ssize_t) image->columns; x++)
205 {
206 register ssize_t
207 i;
208
209 if (GetPixelReadMask(image,p) == 0)
210 {
211 p+=GetPixelChannels(image);
212 continue;
213 }
214 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
215 {
216 PixelChannel channel=GetPixelChannelChannel(image,i);
217 PixelTrait traits=GetPixelChannelTraits(image,channel);
218 if (traits == UndefinedPixelTrait)
219 continue;
220 switch (type)
221 {
222 case MaximumStatistic:
223 default:
224 {
cristyab008852013-09-02 19:36:34 +0000225 if ((double) p[i] > channel_statistics[channel].maxima)
226 channel_statistics[channel].maxima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000227 break;
228 }
229 case MinimumStatistic:
230 {
cristyab008852013-09-02 19:36:34 +0000231 if ((double) p[i] < channel_statistics[channel].minima)
232 channel_statistics[channel].minima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000233 break;
234 }
235 }
236 }
237 p+=GetPixelChannels(image);
238 }
239 }
cristyab008852013-09-02 19:36:34 +0000240 return(channel_statistics);
cristyf61a67f2013-09-02 19:22:54 +0000241}
cristyab008852013-09-02 19:36:34 +0000242
cristy95a072b2011-10-13 18:03:11 +0000243static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
cristye1897792010-01-29 02:05:50 +0000244 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000245{
cristye1897792010-01-29 02:05:50 +0000246#define PrintFeature(feature) \
247 GetMagickPrecision(),(feature)[0], \
248 GetMagickPrecision(),(feature)[1], \
249 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000250 GetMagickPrecision(),(feature)[3], \
251 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000252
cristybd822072010-01-27 00:30:00 +0000253#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000254 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000255 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000256 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000257 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000258 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000259 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000260 " Sum of Squares: Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000261 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000262 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000263 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000264 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000265 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000266 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000267 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000268 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000269 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000270 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000271 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000272 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000273 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000274 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000275 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000276 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000277 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000278 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000279 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000280 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000281 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000282
cristy20ec7592011-05-29 01:28:05 +0000283 ssize_t
284 n;
cristybd822072010-01-27 00:30:00 +0000285
cristy20ec7592011-05-29 01:28:05 +0000286 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000287 PrintFeature(channel_features[channel].angular_second_moment),
288 PrintFeature(channel_features[channel].contrast),
289 PrintFeature(channel_features[channel].correlation),
290 PrintFeature(channel_features[channel].variance_sum_of_squares),
291 PrintFeature(channel_features[channel].inverse_difference_moment),
292 PrintFeature(channel_features[channel].sum_average),
293 PrintFeature(channel_features[channel].sum_variance),
294 PrintFeature(channel_features[channel].sum_entropy),
295 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000296 PrintFeature(channel_features[channel].difference_variance),
297 PrintFeature(channel_features[channel].difference_entropy),
298 PrintFeature(channel_features[channel].measure_of_correlation_1),
299 PrintFeature(channel_features[channel].measure_of_correlation_2),
300 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000301 return(n);
cristybd822072010-01-27 00:30:00 +0000302}
303
cristy7d8529e2013-09-01 17:03:36 +0000304static ssize_t PrintChannelLocations(FILE *file,const Image *image,
cristyab008852013-09-02 19:36:34 +0000305 const PixelChannel channel,const char *name,const StatisticType type,
306 const size_t max_locations,const ChannelStatistics *channel_statistics)
cristy7d8529e2013-09-01 17:03:36 +0000307{
cristyab008852013-09-02 19:36:34 +0000308 double
309 target;
310
cristy7d8529e2013-09-01 17:03:36 +0000311 ExceptionInfo
312 *exception;
313
314 ssize_t
315 n,
316 y;
cristy858ba702013-09-01 18:47:18 +0000317
cristyab008852013-09-02 19:36:34 +0000318 switch (type)
319 {
320 case MaximumStatistic:
321 default:
322 {
323 target=channel_statistics[channel].maxima;
324 break;
325 }
326 case MinimumStatistic:
327 {
328 target=channel_statistics[channel].minima;
329 break;
330 }
331 }
cristya1b14862013-09-01 23:53:47 +0000332 (void) FormatLocaleFile(file," %s: %.*g (%.*g)",name,GetMagickPrecision(),
cristyab008852013-09-02 19:36:34 +0000333 target,GetMagickPrecision(),QuantumScale*target);
cristy7d8529e2013-09-01 17:03:36 +0000334 exception=AcquireExceptionInfo();
335 n=0;
336 for (y=0; y < (ssize_t) image->rows; y++)
337 {
338 register const Quantum
339 *p;
340
341 ssize_t
cristyab008852013-09-02 19:36:34 +0000342 offset,
cristy7d8529e2013-09-01 17:03:36 +0000343 x;
344
345 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
346 if (p == (const Quantum *) NULL)
347 break;
348 for (x=0; x < (ssize_t) image->columns; x++)
349 {
350 MagickBooleanType
351 match;
352
353 PixelTrait traits=GetPixelChannelTraits(image,channel);
354 if (traits == UndefinedPixelTrait)
355 continue;
cristyab008852013-09-02 19:36:34 +0000356 offset=GetPixelChannelOffset(image,channel);
357 match=fabs((double) p[offset]-target) < 0.5 ? MagickTrue : MagickFalse;
cristy7d8529e2013-09-01 17:03:36 +0000358 if (match != MagickFalse)
359 {
360 if ((max_locations != 0) && (n >= max_locations))
361 break;
362 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
363 n++;
364 }
cristy858ba702013-09-01 18:47:18 +0000365 p+=GetPixelChannels(image);
cristy7d8529e2013-09-01 17:03:36 +0000366 }
367 if (x < (ssize_t) image->columns)
368 break;
369 }
370 (void) FormatLocaleFile(file,"\n");
371 return(n);
372}
373
cristy95a072b2011-10-13 18:03:11 +0000374static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000375 const char *name,const double scale,
376 const ChannelStatistics *channel_statistics)
377{
378#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000379 " (%g)\n max: " QuantumFormat " (%g)\n" \
380 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
381 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000382
cristy20ec7592011-05-29 01:28:05 +0000383 ssize_t
384 n;
cristybd822072010-01-27 00:30:00 +0000385
cristy20ec7592011-05-29 01:28:05 +0000386 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000387 channel_statistics[channel].minima),channel_statistics[channel].minima/
388 (double) QuantumRange,ClampToQuantum(scale*
389 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
390 (double) QuantumRange,scale*channel_statistics[channel].mean,
391 channel_statistics[channel].mean/(double) QuantumRange,scale*
392 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000393 channel_statistics[channel].standard_deviation/(double) QuantumRange,
394 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000395 return(n);
cristybd822072010-01-27 00:30:00 +0000396}
397
398MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000399 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000400{
cristy3ed852e2009-09-05 21:47:34 +0000401 char
402 color[MaxTextExtent],
403 format[MaxTextExtent],
404 key[MaxTextExtent];
405
cristybd822072010-01-27 00:30:00 +0000406 ChannelFeatures
407 *channel_features;
408
409 ChannelStatistics
410 *channel_statistics;
411
cristy3ed852e2009-09-05 21:47:34 +0000412 ColorspaceType
413 colorspace;
414
415 const char
416 *artifact,
cristy7d8529e2013-09-01 17:03:36 +0000417 *locate,
cristy3ed852e2009-09-05 21:47:34 +0000418 *name,
419 *property,
420 *registry,
421 *value;
422
423 const MagickInfo
424 *magick_info;
425
cristy3ed852e2009-09-05 21:47:34 +0000426 double
427 elapsed_time,
428 user_time;
429
cristy3ed852e2009-09-05 21:47:34 +0000430 ImageType
431 type;
432
cristy3ed852e2009-09-05 21:47:34 +0000433 MagickBooleanType
434 ping;
435
cristy4c08aed2011-07-01 19:47:50 +0000436 register const Quantum
437 *p;
438
cristybb503372010-05-27 20:51:26 +0000439 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000440 i,
441 x;
442
cristybb503372010-05-27 20:51:26 +0000443 size_t
cristybd822072010-01-27 00:30:00 +0000444 distance,
cristy3ed852e2009-09-05 21:47:34 +0000445 scale;
446
cristy9d314ff2011-03-09 01:30:28 +0000447 ssize_t
448 y;
449
cristy3ed852e2009-09-05 21:47:34 +0000450 assert(image != (Image *) NULL);
451 assert(image->signature == MagickSignature);
452 if (image->debug != MagickFalse)
453 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
454 if (file == (FILE *) NULL)
455 file=stdout;
cristy7d8529e2013-09-01 17:03:36 +0000456 locate=GetImageArtifact(image,"identify:locate");
457 if (locate != (const char *) NULL)
458 {
459 const char
460 *limit;
461
462 size_t
463 max_locations;
464
465 StatisticType
cristyf61a67f2013-09-02 19:22:54 +0000466 type;
cristy7d8529e2013-09-01 17:03:36 +0000467
468 /*
469 Display minimum, maximum, or mean pixel locations.
470 */
cristyf61a67f2013-09-02 19:22:54 +0000471 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
cristy7d8529e2013-09-01 17:03:36 +0000472 MagickFalse,locate);
473 limit=GetImageArtifact(image,"identify:limit");
474 max_locations=0;
475 if (limit != (const char *) NULL)
476 max_locations=StringToUnsignedLong(limit);
cristyab008852013-09-02 19:36:34 +0000477 channel_statistics=GetLocationStatistics(image,type,exception);
cristy7d8529e2013-09-01 17:03:36 +0000478 colorspace=image->colorspace;
479 if (IsImageGray(image,exception) != MagickFalse)
480 colorspace=GRAYColorspace;
481 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
482 switch (colorspace)
483 {
484 case RGBColorspace:
485 default:
486 {
cristycffbc332013-09-01 18:25:19 +0000487 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
cristyab008852013-09-02 19:36:34 +0000488 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000489 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
cristyab008852013-09-02 19:36:34 +0000490 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000491 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
cristyab008852013-09-02 19:36:34 +0000492 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000493 break;
494 }
495 case CMYKColorspace:
496 {
cristycffbc332013-09-01 18:25:19 +0000497 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
cristyab008852013-09-02 19:36:34 +0000498 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000499 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
cristyab008852013-09-02 19:36:34 +0000500 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000501 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
cristyab008852013-09-02 19:36:34 +0000502 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000503 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
cristyab008852013-09-02 19:36:34 +0000504 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000505 break;
506 }
507 case GRAYColorspace:
508 {
cristycffbc332013-09-01 18:25:19 +0000509 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
cristyab008852013-09-02 19:36:34 +0000510 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000511 break;
512 }
513 }
514 if (image->alpha_trait == BlendPixelTrait)
cristycffbc332013-09-01 18:25:19 +0000515 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
cristyab008852013-09-02 19:36:34 +0000516 type,max_locations,channel_statistics);
517 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
518 channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000519 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
520 }
cristy3ed852e2009-09-05 21:47:34 +0000521 *format='\0';
522 elapsed_time=GetElapsedTime(&image->timer);
523 user_time=GetUserTime(&image->timer);
524 GetTimerInfo(&image->timer);
525 if (verbose == MagickFalse)
526 {
527 /*
528 Display summary info about the image.
529 */
530 if (*image->magick_filename != '\0')
531 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000532 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000533 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000534 (GetNextImageInList(image) == (Image *) NULL) &&
535 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000536 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000537 else
cristy1e604812011-05-19 18:07:50 +0000538 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
539 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000540 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000541 if ((image->magick_columns != 0) || (image->magick_rows != 0))
542 if ((image->magick_columns != image->columns) ||
543 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000544 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
545 image->magick_columns,(double) image->magick_rows);
546 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
547 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000548 if ((image->page.width != 0) || (image->page.height != 0) ||
549 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000550 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000551 image->page.width,(double) image->page.height,(double) image->page.x,
552 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000553 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000554 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000555 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
556 MagickTypeOptions,(ssize_t) image->type));
cristyab008852013-09-02 19:36:34 +0000557 if (image->colorspace != UndefinedColorspace)
cristy479d4622012-08-22 13:03:27 +0000558 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
559 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000560 if (image->storage_class == DirectClass)
561 {
cristy3ed852e2009-09-05 21:47:34 +0000562 if (image->total_colors != 0)
563 {
cristyb9080c92009-12-01 20:13:26 +0000564 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000565 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000566 }
567 }
568 else
569 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000570 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000571 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000572 else
cristy479d4622012-08-22 13:03:27 +0000573 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000574 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000575 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000576 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000577 (image->error.mean_error_per_pixel+0.5),
578 image->error.normalized_mean_error,
579 image->error.normalized_maximum_error);
580 if (GetBlobSize(image) != 0)
581 {
cristyb9080c92009-12-01 20:13:26 +0000582 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000583 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000584 }
cristy1e604812011-05-19 18:07:50 +0000585 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
586 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
587 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
588 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000589 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000590 (void) fflush(file);
591 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
592 }
593 /*
594 Display verbose info about the image.
595 */
cristy4c08aed2011-07-01 19:47:50 +0000596 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000597 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000598 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000599 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000600 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000601 if (*image->magick_filename != '\0')
602 if (LocaleCompare(image->magick_filename,image->filename) != 0)
603 {
604 char
605 filename[MaxTextExtent];
606
607 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000608 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000609 }
cristya4037272011-08-28 15:11:39 +0000610 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000611 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000612 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000613 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000614 else
cristyb51dff52011-05-19 16:55:47 +0000615 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000616 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000617 if ((magick_info == (const MagickInfo *) NULL) ||
618 (GetMagickMimeType(magick_info) != (const char *) NULL))
619 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
dirk55584952013-08-09 18:54:28 +0000620 magick_info));
cristy1e604812011-05-19 18:07:50 +0000621 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
622 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000623 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000624 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
625 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000626 if ((image->magick_columns != 0) || (image->magick_rows != 0))
627 if ((image->magick_columns != image->columns) ||
628 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000629 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000630 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000631 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000632 {
cristy2a11bef2011-10-28 18:33:11 +0000633 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
634 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000635 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000636 image->columns/image->resolution.x,(double) image->rows/
637 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000638 }
cristyb51dff52011-05-19 16:55:47 +0000639 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000640 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000641 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
642 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000643 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000644 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000645 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000646 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000647 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000648 /*
649 Detail channel depth and extrema.
650 */
cristyb51dff52011-05-19 16:55:47 +0000651 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000652 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000653 channel_statistics=(ChannelStatistics *) NULL;
cristy15a88782010-01-31 23:24:49 +0000654 channel_features=(ChannelFeatures *) NULL;
655 colorspace=image->colorspace;
cristy564a5692012-01-20 23:56:26 +0000656 scale=1;
cristy3ed852e2009-09-05 21:47:34 +0000657 if (ping == MagickFalse)
658 {
cristybb503372010-05-27 20:51:26 +0000659 size_t
cristy3ed852e2009-09-05 21:47:34 +0000660 depth;
661
cristya4037272011-08-28 15:11:39 +0000662 channel_statistics=GetImageStatistics(image,exception);
cristy15a88782010-01-31 23:24:49 +0000663 artifact=GetImageArtifact(image,"identify:features");
664 if (artifact != (const char *) NULL)
665 {
666 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000667 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000668 }
cristya4037272011-08-28 15:11:39 +0000669 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000670 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000671 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
672 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000673 else
cristyb51dff52011-05-19 16:55:47 +0000674 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000675 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000676 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000677 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000678 colorspace=GRAYColorspace;
679 switch (colorspace)
680 {
681 case RGBColorspace:
682 default:
683 {
cristycffbc332013-09-01 18:25:19 +0000684 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000685 channel_statistics[RedPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000686 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000687 channel_statistics[GreenPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000688 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000689 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000690 break;
691 }
692 case CMYKColorspace:
693 {
cristycffbc332013-09-01 18:25:19 +0000694 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000695 channel_statistics[CyanPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000696 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000697 channel_statistics[MagentaPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000698 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000699 channel_statistics[YellowPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000700 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000701 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000702 break;
703 }
704 case GRAYColorspace:
705 {
cristycffbc332013-09-01 18:25:19 +0000706 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000707 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000708 break;
709 }
710 }
cristy8a46d822012-08-28 23:32:39 +0000711 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000712 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000713 channel_statistics[AlphaPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000714 scale=1;
715 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000716 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000717 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000718 }
719 if (channel_statistics != (ChannelStatistics *) NULL)
720 {
cristyb51dff52011-05-19 16:55:47 +0000721 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000722 (void) FormatLocaleFile(file," Pixels: %.20g\n",
723 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000724 switch (colorspace)
725 {
726 case RGBColorspace:
727 default:
728 {
cristy95a072b2011-10-13 18:03:11 +0000729 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
730 scale,channel_statistics);
731 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
732 scale,channel_statistics);
733 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
734 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000735 break;
736 }
737 case CMYKColorspace:
738 {
cristy95a072b2011-10-13 18:03:11 +0000739 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
740 scale,channel_statistics);
741 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
742 scale,channel_statistics);
743 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
744 scale,channel_statistics);
745 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
746 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000747 break;
748 }
749 case GRAYColorspace:
750 {
cristy95a072b2011-10-13 18:03:11 +0000751 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
752 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000753 break;
754 }
755 }
cristy8a46d822012-08-28 23:32:39 +0000756 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000757 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
758 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000759 if (colorspace != GRAYColorspace)
760 {
cristyb51dff52011-05-19 16:55:47 +0000761 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000762 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
763 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000764 }
765 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
766 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000767 }
cristybd822072010-01-27 00:30:00 +0000768 if (channel_features != (ChannelFeatures *) NULL)
769 {
cristy1e604812011-05-19 18:07:50 +0000770 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
771 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000772 switch (colorspace)
773 {
774 case RGBColorspace:
775 default:
cristy549a37e2010-01-26 15:24:15 +0000776 {
cristy95a072b2011-10-13 18:03:11 +0000777 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000778 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000779 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
780 channel_features);
781 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
782 channel_features);
cristybd822072010-01-27 00:30:00 +0000783 break;
784 }
785 case CMYKColorspace:
786 {
cristy95a072b2011-10-13 18:03:11 +0000787 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000788 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000789 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000790 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000791 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
792 channel_features);
793 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000794 channel_features);
795 break;
796 }
797 case GRAYColorspace:
798 {
cristy95a072b2011-10-13 18:03:11 +0000799 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
800 channel_features);
cristybd822072010-01-27 00:30:00 +0000801 break;
802 }
803 }
cristy8a46d822012-08-28 23:32:39 +0000804 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000805 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
806 channel_features);
cristybd822072010-01-27 00:30:00 +0000807 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
808 channel_features);
809 }
810 if (ping == MagickFalse)
811 {
cristy3ed852e2009-09-05 21:47:34 +0000812 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000813 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy7c3af952011-10-20 16:04:16 +0000814 GetImageTotalInkDensity(image,exception)/(double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000815 x=0;
cristy8a46d822012-08-28 23:32:39 +0000816 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000817 {
cristy4c08aed2011-07-01 19:47:50 +0000818 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000819 *p;
820
cristy4c08aed2011-07-01 19:47:50 +0000821 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000822 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000823 {
824 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000825 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000826 break;
cristybb503372010-05-27 20:51:26 +0000827 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000828 {
cristy4c08aed2011-07-01 19:47:50 +0000829 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000830 break;
cristyed231572011-07-14 02:18:59 +0000831 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000832 }
cristybb503372010-05-27 20:51:26 +0000833 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000834 break;
835 }
cristybb503372010-05-27 20:51:26 +0000836 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000837 {
838 char
839 tuple[MaxTextExtent];
840
cristy4c08aed2011-07-01 19:47:50 +0000841 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000842 pixel;
843
cristy4c08aed2011-07-01 19:47:50 +0000844 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000845 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000846 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000847 exception);
cristyb51dff52011-05-19 16:55:47 +0000848 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000849 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000850 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000851 }
852 }
cristya4037272011-08-28 15:11:39 +0000853 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000854 {
cristy4c967562011-06-16 01:46:57 +0000855 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000856 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000857 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000858 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000859 }
cristye64d6372012-12-07 18:56:48 +0000860 else
861 {
anthony6f201312012-03-30 04:08:15 +0000862 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000863 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000864 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
865 GetNumberColors(image,(FILE *) NULL,exception));
866 }
cristy3ed852e2009-09-05 21:47:34 +0000867 }
868 if (image->storage_class == PseudoClass)
869 {
cristy404558c2012-12-07 19:14:39 +0000870 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
871 image->colors);
cristye64d6372012-12-07 18:56:48 +0000872 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000873 if (image->colors <= 1024)
874 {
875 char
876 color[MaxTextExtent],
877 hex[MaxTextExtent],
878 tuple[MaxTextExtent];
879
cristy4c08aed2011-07-01 19:47:50 +0000880 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000881 pixel;
882
cristy101ab702011-10-13 13:06:32 +0000883 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000884 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000885
cristy4c08aed2011-07-01 19:47:50 +0000886 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000887 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000888 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000889 {
cristy9d8c8ce2011-10-25 16:13:52 +0000890 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000891 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000892 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000893 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000894 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000895 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000896 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000897 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000898 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000899 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000900 if (pixel.colorspace == CMYKColorspace)
901 {
902 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000903 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000904 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000905 }
cristy8a46d822012-08-28 23:32:39 +0000906 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000907 {
908 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000909 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000910 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000911 }
912 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000913 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000914 exception);
cristy3ed852e2009-09-05 21:47:34 +0000915 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000916 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
917 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000918 p++;
919 }
920 }
921 }
922 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000923 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000924 image->error.mean_error_per_pixel);
925 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000926 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000927 image->error.normalized_mean_error);
928 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000929 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000930 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +0000931 (void) FormatLocaleFile(file," Rendering intent: %s\n",
932 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
933 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +0000934 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000935 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +0000936 if ((image->chromaticity.red_primary.x != 0.0) ||
937 (image->chromaticity.green_primary.x != 0.0) ||
938 (image->chromaticity.blue_primary.x != 0.0) ||
939 (image->chromaticity.white_point.x != 0.0))
940 {
941 /*
942 Display image chromaticity.
943 */
cristyb51dff52011-05-19 16:55:47 +0000944 (void) FormatLocaleFile(file," Chromaticity:\n");
945 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000946 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000947 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000948 image->chromaticity.green_primary.x,
949 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000950 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000951 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000952 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000953 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
954 }
955 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +0000956 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
957 (double) image->extract_info.width,(double) image->extract_info.height,
958 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +0000959 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000960 exception);
cristyb51dff52011-05-19 16:55:47 +0000961 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000962 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000963 exception);
cristyb51dff52011-05-19 16:55:47 +0000964 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000965 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000966 exception);
cristyb51dff52011-05-19 16:55:47 +0000967 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000968 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000969 exception);
cristyb51dff52011-05-19 16:55:47 +0000970 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +0000971 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
972 MagickInterlaceOptions,(ssize_t) image->interlace));
973 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
974 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +0000975 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000976 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +0000977 if ((image->page.width != 0) || (image->page.height != 0) ||
978 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +0000979 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
980 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +0000981 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000982 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000983 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000984 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000985 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000986 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +0000987 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +0000988 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +0000989 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +0000990 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +0000991 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
992 image->iterations);
cristy3ed852e2009-09-05 21:47:34 +0000993 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +0000994 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
995 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000996 else
997 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +0000998 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
999 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001000 MagickCompressOptions,(ssize_t) image->compression));
cristy07f628a2013-08-20 11:43:55 +00001001 if (image->quality != UndefinedCompressionQuality)
cristy92beec62013-08-26 12:23:46 +00001002 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +00001003 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
1004 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +00001005 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001006 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +00001007 if (image->directory != (char *) NULL)
1008 {
1009 Image
1010 *tile;
1011
1012 ImageInfo
1013 *image_info;
1014
1015 register char
1016 *p,
1017 *q;
1018
1019 WarningHandler
1020 handler;
1021
1022 /*
1023 Display visual image directory.
1024 */
1025 image_info=AcquireImageInfo();
1026 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +00001027 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +00001028 for (p=image->directory; *p != '\0'; p++)
1029 {
1030 q=p;
1031 while ((*q != '\n') && (*q != '\0'))
1032 q++;
1033 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
1034 p=q;
cristyb51dff52011-05-19 16:55:47 +00001035 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +00001036 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +00001037 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001038 (void) SetWarningHandler(handler);
1039 if (tile == (Image *) NULL)
1040 {
cristyb51dff52011-05-19 16:55:47 +00001041 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +00001042 continue;
1043 }
cristy1e604812011-05-19 18:07:50 +00001044 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1045 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +00001046 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001047 ResetImagePropertyIterator(tile);
1048 property=GetNextImageProperty(tile);
1049 while (property != (const char *) NULL)
1050 {
cristyb51dff52011-05-19 16:55:47 +00001051 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +00001052 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001053 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001054 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001055 property=GetNextImageProperty(tile);
1056 }
1057 tile=DestroyImage(tile);
1058 }
1059 image_info=DestroyImageInfo(image_info);
1060 }
cristyd15e6592011-10-15 00:13:06 +00001061 (void) GetImageProperty(image,"exif:*",exception);
cristy3ed852e2009-09-05 21:47:34 +00001062 ResetImagePropertyIterator(image);
1063 property=GetNextImageProperty(image);
1064 if (property != (const char *) NULL)
1065 {
1066 /*
1067 Display image properties.
1068 */
cristyb51dff52011-05-19 16:55:47 +00001069 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +00001070 while (property != (const char *) NULL)
1071 {
cristyb51dff52011-05-19 16:55:47 +00001072 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +00001073 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001074 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001075 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001076 property=GetNextImageProperty(image);
1077 }
1078 }
cristyb51dff52011-05-19 16:55:47 +00001079 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +00001080 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +00001081 if (value != (const char *) NULL)
1082 {
1083 /*
1084 Display clipping path.
1085 */
cristyb51dff52011-05-19 16:55:47 +00001086 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +00001087 if (strlen(value) > 80)
1088 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +00001089 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001090 }
1091 ResetImageProfileIterator(image);
1092 name=GetNextImageProfile(image);
1093 if (name != (char *) NULL)
1094 {
1095 const StringInfo
1096 *profile;
1097
1098 /*
1099 Identify image profiles.
1100 */
cristyb51dff52011-05-19 16:55:47 +00001101 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +00001102 while (name != (char *) NULL)
1103 {
1104 profile=GetImageProfile(image,name);
1105 if (profile == (StringInfo *) NULL)
1106 continue;
cristy1e604812011-05-19 18:07:50 +00001107 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1108 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001109#if defined(MAGICKCORE_LCMS_DELEGATE)
1110 if ((LocaleCompare(name,"icc") == 0) ||
1111 (LocaleCompare(name,"icm") == 0))
1112 {
1113 cmsHPROFILE
1114 icc_profile;
1115
1116 icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile),
cristyd09bcf92010-03-25 03:04:45 +00001117 (cmsUInt32Number) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001118 if (icc_profile != (cmsHPROFILE *) NULL)
1119 {
cristyd09bcf92010-03-25 03:04:45 +00001120#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
cristy3ed852e2009-09-05 21:47:34 +00001121 const char
1122 *name;
1123
1124 name=cmsTakeProductName(icc_profile);
1125 if (name != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001126 (void) FormatLocaleFile(file," %s\n",name);
cristyd09bcf92010-03-25 03:04:45 +00001127#else
1128 char
1129 info[MaxTextExtent];
1130
1131 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription,
1132 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001133 (void) FormatLocaleFile(file," Description: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001134 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer,
1135 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001136 (void) FormatLocaleFile(file," Manufacturer: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001137 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en",
1138 "US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001139 (void) FormatLocaleFile(file," Model: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001140 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright,
1141 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001142 (void) FormatLocaleFile(file," Copyright: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001143#endif
cristy3ed852e2009-09-05 21:47:34 +00001144 (void) cmsCloseProfile(icc_profile);
1145 }
1146 }
1147#endif
1148 if (LocaleCompare(name,"iptc") == 0)
1149 {
1150 char
1151 *attribute,
1152 **attribute_list;
1153
1154 const char
1155 *tag;
1156
cristycee97112010-05-28 00:44:52 +00001157 long
cristy3ed852e2009-09-05 21:47:34 +00001158 dataset,
1159 record,
1160 sentinel;
1161
cristybb503372010-05-27 20:51:26 +00001162 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001163 j;
1164
1165 size_t
1166 length,
1167 profile_length;
1168
1169 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +00001170 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +00001171 {
1172 length=1;
1173 sentinel=GetStringInfoDatum(profile)[i++];
1174 if (sentinel != 0x1c)
1175 continue;
1176 dataset=GetStringInfoDatum(profile)[i++];
1177 record=GetStringInfoDatum(profile)[i++];
1178 switch (record)
1179 {
1180 case 5: tag="Image Name"; break;
1181 case 7: tag="Edit Status"; break;
1182 case 10: tag="Priority"; break;
1183 case 15: tag="Category"; break;
1184 case 20: tag="Supplemental Category"; break;
1185 case 22: tag="Fixture Identifier"; break;
1186 case 25: tag="Keyword"; break;
1187 case 30: tag="Release Date"; break;
1188 case 35: tag="Release Time"; break;
1189 case 40: tag="Special Instructions"; break;
1190 case 45: tag="Reference Service"; break;
1191 case 47: tag="Reference Date"; break;
1192 case 50: tag="Reference Number"; break;
1193 case 55: tag="Created Date"; break;
1194 case 60: tag="Created Time"; break;
1195 case 65: tag="Originating Program"; break;
1196 case 70: tag="Program Version"; break;
1197 case 75: tag="Object Cycle"; break;
1198 case 80: tag="Byline"; break;
1199 case 85: tag="Byline Title"; break;
1200 case 90: tag="City"; break;
1201 case 95: tag="Province State"; break;
1202 case 100: tag="Country Code"; break;
1203 case 101: tag="Country"; break;
1204 case 103: tag="Original Transmission Reference"; break;
1205 case 105: tag="Headline"; break;
1206 case 110: tag="Credit"; break;
1207 case 115: tag="Src"; break;
1208 case 116: tag="Copyright String"; break;
1209 case 120: tag="Caption"; break;
1210 case 121: tag="Local Caption"; break;
1211 case 122: tag="Caption Writer"; break;
1212 case 200: tag="Custom Field 1"; break;
1213 case 201: tag="Custom Field 2"; break;
1214 case 202: tag="Custom Field 3"; break;
1215 case 203: tag="Custom Field 4"; break;
1216 case 204: tag="Custom Field 5"; break;
1217 case 205: tag="Custom Field 6"; break;
1218 case 206: tag="Custom Field 7"; break;
1219 case 207: tag="Custom Field 8"; break;
1220 case 208: tag="Custom Field 9"; break;
1221 case 209: tag="Custom Field 10"; break;
1222 case 210: tag="Custom Field 11"; break;
1223 case 211: tag="Custom Field 12"; break;
1224 case 212: tag="Custom Field 13"; break;
1225 case 213: tag="Custom Field 14"; break;
1226 case 214: tag="Custom Field 15"; break;
1227 case 215: tag="Custom Field 16"; break;
1228 case 216: tag="Custom Field 17"; break;
1229 case 217: tag="Custom Field 18"; break;
1230 case 218: tag="Custom Field 19"; break;
1231 case 219: tag="Custom Field 20"; break;
1232 default: tag="unknown"; break;
1233 }
cristy1e604812011-05-19 18:07:50 +00001234 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1235 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001236 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1237 length|=GetStringInfoDatum(profile)[i++];
1238 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001239 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001240 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1241 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001242 if (attribute != (char *) NULL)
1243 {
1244 (void) CopyMagickString(attribute,(char *)
1245 GetStringInfoDatum(profile)+i,length+1);
1246 attribute_list=StringToList(attribute);
1247 if (attribute_list != (char **) NULL)
1248 {
1249 for (j=0; attribute_list[j] != (char *) NULL; j++)
1250 {
1251 (void) fputs(attribute_list[j],file);
1252 (void) fputs("\n",file);
1253 attribute_list[j]=(char *) RelinquishMagickMemory(
1254 attribute_list[j]);
1255 }
1256 attribute_list=(char **) RelinquishMagickMemory(
1257 attribute_list);
1258 }
1259 attribute=DestroyString(attribute);
1260 }
1261 }
1262 }
1263 if (image->debug != MagickFalse)
1264 PrintStringInfo(file,name,profile);
1265 name=GetNextImageProfile(image);
1266 }
1267 }
1268 ResetImageArtifactIterator(image);
1269 artifact=GetNextImageArtifact(image);
1270 if (artifact != (const char *) NULL)
1271 {
1272 /*
1273 Display image artifacts.
1274 */
cristyb51dff52011-05-19 16:55:47 +00001275 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001276 while (artifact != (const char *) NULL)
1277 {
cristyb51dff52011-05-19 16:55:47 +00001278 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001279 value=GetImageArtifact(image,artifact);
1280 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001281 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001282 artifact=GetNextImageArtifact(image);
1283 }
1284 }
1285 ResetImageRegistryIterator();
1286 registry=GetNextImageRegistry();
1287 if (registry != (const char *) NULL)
1288 {
1289 /*
1290 Display image registry.
1291 */
cristyb51dff52011-05-19 16:55:47 +00001292 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001293 while (registry != (const char *) NULL)
1294 {
cristyb51dff52011-05-19 16:55:47 +00001295 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001296 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001297 exception);
cristy3ed852e2009-09-05 21:47:34 +00001298 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001299 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001300 registry=GetNextImageRegistry();
1301 }
1302 }
cristyb51dff52011-05-19 16:55:47 +00001303 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001304 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001305 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001306 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001307 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001308 MagickFalse,format);
1309 if (strlen(format) > 1)
1310 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001311 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001312 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001313 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001314 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1315 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001316 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001317 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1318 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001319 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001320 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001321 (void) fflush(file);
1322 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1323}