blob: 7e5fe86afb9d728313002219e0c3dee5d8d20bae [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 %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% September 1994 %
18% %
19% %
cristyfe676ee2013-11-18 13:03:38 +000020% Copyright 1999-2014 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 register ssize_t
158 i;
159
160 ssize_t
161 y;
162
cristyab008852013-09-02 19:36:34 +0000163 assert(image != (Image *) NULL);
164 assert(image->signature == MagickSignature);
cristyf61a67f2013-09-02 19:22:54 +0000165 if (image->debug != MagickFalse)
166 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristyab008852013-09-02 19:36:34 +0000167 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
168 MaxPixelChannels+1,sizeof(*channel_statistics));
169 if (channel_statistics == (ChannelStatistics *) NULL)
170 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
171 (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
172 sizeof(*channel_statistics));
cristyf61a67f2013-09-02 19:22:54 +0000173 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
cristyab008852013-09-02 19:36:34 +0000174 {
cristyf61a67f2013-09-02 19:22:54 +0000175 switch (type)
176 {
177 case MaximumStatistic:
178 default:
179 {
cristyab008852013-09-02 19:36:34 +0000180 channel_statistics[i].maxima=(-MagickHuge);
cristyf61a67f2013-09-02 19:22:54 +0000181 break;
182 }
183 case MinimumStatistic:
184 {
cristyab008852013-09-02 19:36:34 +0000185 channel_statistics[i].minima=MagickHuge;
cristyf61a67f2013-09-02 19:22:54 +0000186 break;
187 }
188 }
cristyab008852013-09-02 19:36:34 +0000189 }
cristyf61a67f2013-09-02 19:22:54 +0000190 for (y=0; y < (ssize_t) image->rows; y++)
191 {
192 register const Quantum
193 *restrict p;
194
195 register ssize_t
196 x;
197
198 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
199 if (p == (const Quantum *) NULL)
200 break;
201 for (x=0; x < (ssize_t) image->columns; x++)
202 {
203 register ssize_t
204 i;
205
206 if (GetPixelReadMask(image,p) == 0)
207 {
208 p+=GetPixelChannels(image);
209 continue;
210 }
211 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
212 {
213 PixelChannel channel=GetPixelChannelChannel(image,i);
214 PixelTrait traits=GetPixelChannelTraits(image,channel);
215 if (traits == UndefinedPixelTrait)
216 continue;
217 switch (type)
218 {
219 case MaximumStatistic:
220 default:
221 {
cristyab008852013-09-02 19:36:34 +0000222 if ((double) p[i] > channel_statistics[channel].maxima)
223 channel_statistics[channel].maxima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000224 break;
225 }
226 case MinimumStatistic:
227 {
cristyab008852013-09-02 19:36:34 +0000228 if ((double) p[i] < channel_statistics[channel].minima)
229 channel_statistics[channel].minima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000230 break;
231 }
232 }
233 }
234 p+=GetPixelChannels(image);
235 }
236 }
cristyab008852013-09-02 19:36:34 +0000237 return(channel_statistics);
cristyf61a67f2013-09-02 19:22:54 +0000238}
cristyab008852013-09-02 19:36:34 +0000239
cristy95a072b2011-10-13 18:03:11 +0000240static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
cristye1897792010-01-29 02:05:50 +0000241 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000242{
cristye1897792010-01-29 02:05:50 +0000243#define PrintFeature(feature) \
244 GetMagickPrecision(),(feature)[0], \
245 GetMagickPrecision(),(feature)[1], \
246 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000247 GetMagickPrecision(),(feature)[3], \
248 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000249
cristybd822072010-01-27 00:30:00 +0000250#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000251 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000252 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000253 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000254 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000255 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000256 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000257 " Sum of Squares: Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000258 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000259 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000260 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000261 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000262 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000263 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000264 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000265 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000266 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000267 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000268 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000269 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000270 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000271 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000272 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000273 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000274 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000275 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000276 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000277 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000278 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000279
cristy20ec7592011-05-29 01:28:05 +0000280 ssize_t
281 n;
cristybd822072010-01-27 00:30:00 +0000282
cristy20ec7592011-05-29 01:28:05 +0000283 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000284 PrintFeature(channel_features[channel].angular_second_moment),
285 PrintFeature(channel_features[channel].contrast),
286 PrintFeature(channel_features[channel].correlation),
287 PrintFeature(channel_features[channel].variance_sum_of_squares),
288 PrintFeature(channel_features[channel].inverse_difference_moment),
289 PrintFeature(channel_features[channel].sum_average),
290 PrintFeature(channel_features[channel].sum_variance),
291 PrintFeature(channel_features[channel].sum_entropy),
292 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000293 PrintFeature(channel_features[channel].difference_variance),
294 PrintFeature(channel_features[channel].difference_entropy),
295 PrintFeature(channel_features[channel].measure_of_correlation_1),
296 PrintFeature(channel_features[channel].measure_of_correlation_2),
297 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000298 return(n);
cristybd822072010-01-27 00:30:00 +0000299}
300
cristy7d8529e2013-09-01 17:03:36 +0000301static ssize_t PrintChannelLocations(FILE *file,const Image *image,
cristyab008852013-09-02 19:36:34 +0000302 const PixelChannel channel,const char *name,const StatisticType type,
303 const size_t max_locations,const ChannelStatistics *channel_statistics)
cristy7d8529e2013-09-01 17:03:36 +0000304{
cristyab008852013-09-02 19:36:34 +0000305 double
306 target;
307
cristy7d8529e2013-09-01 17:03:36 +0000308 ExceptionInfo
309 *exception;
310
311 ssize_t
312 n,
313 y;
cristy858ba702013-09-01 18:47:18 +0000314
cristyab008852013-09-02 19:36:34 +0000315 switch (type)
316 {
317 case MaximumStatistic:
318 default:
319 {
320 target=channel_statistics[channel].maxima;
321 break;
322 }
323 case MinimumStatistic:
324 {
325 target=channel_statistics[channel].minima;
326 break;
327 }
328 }
cristya1b14862013-09-01 23:53:47 +0000329 (void) FormatLocaleFile(file," %s: %.*g (%.*g)",name,GetMagickPrecision(),
cristyab008852013-09-02 19:36:34 +0000330 target,GetMagickPrecision(),QuantumScale*target);
cristy7d8529e2013-09-01 17:03:36 +0000331 exception=AcquireExceptionInfo();
332 n=0;
333 for (y=0; y < (ssize_t) image->rows; y++)
334 {
335 register const Quantum
336 *p;
337
338 ssize_t
cristyab008852013-09-02 19:36:34 +0000339 offset,
cristy7d8529e2013-09-01 17:03:36 +0000340 x;
341
342 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
343 if (p == (const Quantum *) NULL)
344 break;
345 for (x=0; x < (ssize_t) image->columns; x++)
346 {
347 MagickBooleanType
348 match;
349
350 PixelTrait traits=GetPixelChannelTraits(image,channel);
351 if (traits == UndefinedPixelTrait)
352 continue;
cristyab008852013-09-02 19:36:34 +0000353 offset=GetPixelChannelOffset(image,channel);
354 match=fabs((double) p[offset]-target) < 0.5 ? MagickTrue : MagickFalse;
cristy7d8529e2013-09-01 17:03:36 +0000355 if (match != MagickFalse)
356 {
cristy220c4d52013-11-27 19:31:32 +0000357 if ((max_locations != 0) && (n >= (ssize_t) max_locations))
cristy7d8529e2013-09-01 17:03:36 +0000358 break;
359 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
360 n++;
361 }
cristy858ba702013-09-01 18:47:18 +0000362 p+=GetPixelChannels(image);
cristy7d8529e2013-09-01 17:03:36 +0000363 }
364 if (x < (ssize_t) image->columns)
365 break;
366 }
367 (void) FormatLocaleFile(file,"\n");
368 return(n);
369}
370
cristybd4a3c22014-01-07 15:09:37 +0000371static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
372 const char *name,const ChannelMoments *channel_moments)
373{
cristy89298f32014-01-08 00:21:50 +0000374 register ssize_t
375 i;
376
cristybd4a3c22014-01-07 15:09:37 +0000377 ssize_t
378 n;
379
cristy89298f32014-01-08 00:21:50 +0000380 n=FormatLocaleFile(file," %s:\n",name);
381 n+=FormatLocaleFile(file," Centroid: %.*g,%.*g\n",
382 GetMagickPrecision(),channel_moments[channel].centroid.x,
383 GetMagickPrecision(),channel_moments[channel].centroid.y);
384 n+=FormatLocaleFile(file," Ellipse Semi-Major/Minor axis: %.*g,%.*g\n",
385 GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
386 GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
387 n+=FormatLocaleFile(file," Ellipse angle: %.*g\n",
388 GetMagickPrecision(),channel_moments[channel].ellipse_angle);
389 n+=FormatLocaleFile(file," Ellipse eccentricity: %.*g\n",
390 GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
391 n+=FormatLocaleFile(file," Ellipse intensity: %.*g\n",
392 GetMagickPrecision(),channel_moments[channel].ellipse_intensity);
393 for (i=0; i < 8; i++)
394 n+=FormatLocaleFile(file," I%.20g: %.*g\n",i+1.0,GetMagickPrecision(),
395 channel_moments[channel].I[i]);
cristybd4a3c22014-01-07 15:09:37 +0000396 return(n);
397}
398
cristy95a072b2011-10-13 18:03:11 +0000399static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000400 const char *name,const double scale,
401 const ChannelStatistics *channel_statistics)
402{
403#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000404 " (%g)\n max: " QuantumFormat " (%g)\n" \
405 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
406 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000407
cristy20ec7592011-05-29 01:28:05 +0000408 ssize_t
409 n;
cristybd822072010-01-27 00:30:00 +0000410
cristy20ec7592011-05-29 01:28:05 +0000411 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000412 channel_statistics[channel].minima),channel_statistics[channel].minima/
413 (double) QuantumRange,ClampToQuantum(scale*
414 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
415 (double) QuantumRange,scale*channel_statistics[channel].mean,
416 channel_statistics[channel].mean/(double) QuantumRange,scale*
417 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000418 channel_statistics[channel].standard_deviation/(double) QuantumRange,
419 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000420 return(n);
cristybd822072010-01-27 00:30:00 +0000421}
422
423MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000424 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000425{
cristy3ed852e2009-09-05 21:47:34 +0000426 char
427 color[MaxTextExtent],
428 format[MaxTextExtent],
429 key[MaxTextExtent];
430
cristybd822072010-01-27 00:30:00 +0000431 ChannelFeatures
432 *channel_features;
433
cristybd4a3c22014-01-07 15:09:37 +0000434 ChannelMoments
435 *channel_moments;
436
cristybd822072010-01-27 00:30:00 +0000437 ChannelStatistics
438 *channel_statistics;
439
cristy3ed852e2009-09-05 21:47:34 +0000440 ColorspaceType
441 colorspace;
442
443 const char
444 *artifact,
cristy7d8529e2013-09-01 17:03:36 +0000445 *locate,
cristy3ed852e2009-09-05 21:47:34 +0000446 *name,
447 *property,
448 *registry,
449 *value;
450
451 const MagickInfo
452 *magick_info;
453
cristy3ed852e2009-09-05 21:47:34 +0000454 double
455 elapsed_time,
456 user_time;
457
cristy3ed852e2009-09-05 21:47:34 +0000458 ImageType
459 type;
460
cristy3ed852e2009-09-05 21:47:34 +0000461 MagickBooleanType
462 ping;
463
cristy4c08aed2011-07-01 19:47:50 +0000464 register const Quantum
465 *p;
466
cristybb503372010-05-27 20:51:26 +0000467 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000468 i,
469 x;
470
cristybb503372010-05-27 20:51:26 +0000471 size_t
cristybd822072010-01-27 00:30:00 +0000472 distance,
cristy3ed852e2009-09-05 21:47:34 +0000473 scale;
474
cristy9d314ff2011-03-09 01:30:28 +0000475 ssize_t
476 y;
477
cristy3ed852e2009-09-05 21:47:34 +0000478 assert(image != (Image *) NULL);
479 assert(image->signature == MagickSignature);
480 if (image->debug != MagickFalse)
481 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
482 if (file == (FILE *) NULL)
483 file=stdout;
cristy7d8529e2013-09-01 17:03:36 +0000484 locate=GetImageArtifact(image,"identify:locate");
485 if (locate != (const char *) NULL)
486 {
487 const char
488 *limit;
489
490 size_t
491 max_locations;
492
493 StatisticType
cristyf61a67f2013-09-02 19:22:54 +0000494 type;
cristy7d8529e2013-09-01 17:03:36 +0000495
496 /*
497 Display minimum, maximum, or mean pixel locations.
498 */
cristyf61a67f2013-09-02 19:22:54 +0000499 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
cristy7d8529e2013-09-01 17:03:36 +0000500 MagickFalse,locate);
501 limit=GetImageArtifact(image,"identify:limit");
502 max_locations=0;
503 if (limit != (const char *) NULL)
504 max_locations=StringToUnsignedLong(limit);
cristyab008852013-09-02 19:36:34 +0000505 channel_statistics=GetLocationStatistics(image,type,exception);
cristye287bba2013-09-02 20:04:42 +0000506 if (channel_statistics == (ChannelStatistics *) NULL)
507 return(MagickFalse);
cristy7d8529e2013-09-01 17:03:36 +0000508 colorspace=image->colorspace;
509 if (IsImageGray(image,exception) != MagickFalse)
510 colorspace=GRAYColorspace;
511 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
512 switch (colorspace)
513 {
514 case RGBColorspace:
515 default:
516 {
cristycffbc332013-09-01 18:25:19 +0000517 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
cristyab008852013-09-02 19:36:34 +0000518 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000519 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
cristyab008852013-09-02 19:36:34 +0000520 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000521 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
cristyab008852013-09-02 19:36:34 +0000522 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000523 break;
524 }
525 case CMYKColorspace:
526 {
cristycffbc332013-09-01 18:25:19 +0000527 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
cristyab008852013-09-02 19:36:34 +0000528 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000529 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
cristyab008852013-09-02 19:36:34 +0000530 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000531 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
cristyab008852013-09-02 19:36:34 +0000532 type,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000533 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
cristyab008852013-09-02 19:36:34 +0000534 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000535 break;
536 }
537 case GRAYColorspace:
538 {
cristycffbc332013-09-01 18:25:19 +0000539 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
cristyab008852013-09-02 19:36:34 +0000540 type,max_locations,channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000541 break;
542 }
543 }
544 if (image->alpha_trait == BlendPixelTrait)
cristycffbc332013-09-01 18:25:19 +0000545 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
cristyab008852013-09-02 19:36:34 +0000546 type,max_locations,channel_statistics);
547 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
548 channel_statistics);
cristy7d8529e2013-09-01 17:03:36 +0000549 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
550 }
cristy3ed852e2009-09-05 21:47:34 +0000551 *format='\0';
552 elapsed_time=GetElapsedTime(&image->timer);
553 user_time=GetUserTime(&image->timer);
554 GetTimerInfo(&image->timer);
555 if (verbose == MagickFalse)
556 {
557 /*
558 Display summary info about the image.
559 */
560 if (*image->magick_filename != '\0')
561 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000562 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000563 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000564 (GetNextImageInList(image) == (Image *) NULL) &&
565 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000566 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000567 else
cristy1e604812011-05-19 18:07:50 +0000568 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
569 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000570 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000571 if ((image->magick_columns != 0) || (image->magick_rows != 0))
572 if ((image->magick_columns != image->columns) ||
573 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000574 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
575 image->magick_columns,(double) image->magick_rows);
576 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
577 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000578 if ((image->page.width != 0) || (image->page.height != 0) ||
579 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000580 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000581 image->page.width,(double) image->page.height,(double) image->page.x,
582 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000583 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000584 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000585 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
586 MagickTypeOptions,(ssize_t) image->type));
cristyab008852013-09-02 19:36:34 +0000587 if (image->colorspace != UndefinedColorspace)
cristy479d4622012-08-22 13:03:27 +0000588 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
589 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000590 if (image->storage_class == DirectClass)
591 {
cristy3ed852e2009-09-05 21:47:34 +0000592 if (image->total_colors != 0)
593 {
cristyb9080c92009-12-01 20:13:26 +0000594 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000595 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000596 }
597 }
598 else
599 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000600 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000601 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000602 else
cristy479d4622012-08-22 13:03:27 +0000603 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000604 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000605 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000606 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000607 (image->error.mean_error_per_pixel+0.5),
608 image->error.normalized_mean_error,
609 image->error.normalized_maximum_error);
610 if (GetBlobSize(image) != 0)
611 {
cristyb9080c92009-12-01 20:13:26 +0000612 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000613 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000614 }
cristy1e604812011-05-19 18:07:50 +0000615 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
616 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
617 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
618 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000619 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000620 (void) fflush(file);
621 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
622 }
623 /*
624 Display verbose info about the image.
625 */
cristy4c08aed2011-07-01 19:47:50 +0000626 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000627 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000628 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000629 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000630 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000631 if (*image->magick_filename != '\0')
632 if (LocaleCompare(image->magick_filename,image->filename) != 0)
633 {
634 char
635 filename[MaxTextExtent];
636
637 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000638 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000639 }
cristya4037272011-08-28 15:11:39 +0000640 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000641 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000642 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000643 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000644 else
cristyb51dff52011-05-19 16:55:47 +0000645 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000646 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000647 if ((magick_info == (const MagickInfo *) NULL) ||
648 (GetMagickMimeType(magick_info) != (const char *) NULL))
649 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
dirk55584952013-08-09 18:54:28 +0000650 magick_info));
cristy1e604812011-05-19 18:07:50 +0000651 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
652 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000653 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000654 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
655 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000656 if ((image->magick_columns != 0) || (image->magick_rows != 0))
657 if ((image->magick_columns != image->columns) ||
658 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000659 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000660 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000661 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000662 {
cristy2a11bef2011-10-28 18:33:11 +0000663 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
664 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000665 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000666 image->columns/image->resolution.x,(double) image->rows/
667 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000668 }
cristyb51dff52011-05-19 16:55:47 +0000669 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000670 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000671 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
672 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000673 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000674 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000675 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000676 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000677 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000678 /*
679 Detail channel depth and extrema.
680 */
cristyb51dff52011-05-19 16:55:47 +0000681 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000682 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000683 channel_statistics=(ChannelStatistics *) NULL;
cristybd4a3c22014-01-07 15:09:37 +0000684 channel_moments=(ChannelMoments *) NULL;
cristy15a88782010-01-31 23:24:49 +0000685 channel_features=(ChannelFeatures *) NULL;
686 colorspace=image->colorspace;
cristy564a5692012-01-20 23:56:26 +0000687 scale=1;
cristy3ed852e2009-09-05 21:47:34 +0000688 if (ping == MagickFalse)
689 {
cristybb503372010-05-27 20:51:26 +0000690 size_t
cristy3ed852e2009-09-05 21:47:34 +0000691 depth;
692
cristya4037272011-08-28 15:11:39 +0000693 channel_statistics=GetImageStatistics(image,exception);
cristye287bba2013-09-02 20:04:42 +0000694 if (channel_statistics == (ChannelStatistics *) NULL)
695 return(MagickFalse);
cristybd4a3c22014-01-07 15:09:37 +0000696 artifact=GetImageArtifact(image,"identify:moments");
697 if (artifact != (const char *) NULL)
698 channel_moments=GetImageMoments(image,exception);
cristy15a88782010-01-31 23:24:49 +0000699 artifact=GetImageArtifact(image,"identify:features");
700 if (artifact != (const char *) NULL)
701 {
702 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000703 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000704 }
cristya4037272011-08-28 15:11:39 +0000705 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000706 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000707 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
708 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000709 else
cristyb51dff52011-05-19 16:55:47 +0000710 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000711 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000712 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000713 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000714 colorspace=GRAYColorspace;
715 switch (colorspace)
716 {
717 case RGBColorspace:
718 default:
719 {
cristycffbc332013-09-01 18:25:19 +0000720 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000721 channel_statistics[RedPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000722 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000723 channel_statistics[GreenPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000724 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000725 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000726 break;
727 }
728 case CMYKColorspace:
729 {
cristycffbc332013-09-01 18:25:19 +0000730 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000731 channel_statistics[CyanPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000732 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000733 channel_statistics[MagentaPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000734 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000735 channel_statistics[YellowPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000736 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000737 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000738 break;
739 }
740 case GRAYColorspace:
741 {
cristycffbc332013-09-01 18:25:19 +0000742 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000743 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000744 break;
745 }
746 }
cristy8a46d822012-08-28 23:32:39 +0000747 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000748 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000749 channel_statistics[AlphaPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000750 scale=1;
751 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000752 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000753 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000754 }
755 if (channel_statistics != (ChannelStatistics *) NULL)
756 {
cristyb51dff52011-05-19 16:55:47 +0000757 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000758 (void) FormatLocaleFile(file," Pixels: %.20g\n",
759 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000760 switch (colorspace)
761 {
762 case RGBColorspace:
763 default:
764 {
cristy95a072b2011-10-13 18:03:11 +0000765 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
766 scale,channel_statistics);
767 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
768 scale,channel_statistics);
769 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
770 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000771 break;
772 }
773 case CMYKColorspace:
774 {
cristy95a072b2011-10-13 18:03:11 +0000775 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
776 scale,channel_statistics);
777 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
778 scale,channel_statistics);
779 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
780 scale,channel_statistics);
781 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
782 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000783 break;
784 }
785 case GRAYColorspace:
786 {
cristy95a072b2011-10-13 18:03:11 +0000787 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
788 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000789 break;
790 }
791 }
cristy8a46d822012-08-28 23:32:39 +0000792 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000793 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
794 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000795 if (colorspace != GRAYColorspace)
796 {
cristyb51dff52011-05-19 16:55:47 +0000797 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000798 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
799 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000800 }
801 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
802 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000803 }
cristybd4a3c22014-01-07 15:09:37 +0000804 if (channel_moments != (ChannelMoments *) NULL)
805 {
cristy89fc6f72014-01-07 15:38:21 +0000806 (void) FormatLocaleFile(file," Channel moments:\n");
cristybd4a3c22014-01-07 15:09:37 +0000807 switch (colorspace)
808 {
809 case RGBColorspace:
810 default:
811 {
812 (void) PrintChannelMoments(file,RedPixelChannel,"Red",
813 channel_moments);
814 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",
815 channel_moments);
816 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",
817 channel_moments);
818 break;
819 }
820 case CMYKColorspace:
821 {
822 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",
823 channel_moments);
824 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",
825 channel_moments);
826 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",
827 channel_moments);
828 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",
829 channel_moments);
830 break;
831 }
832 case GRAYColorspace:
833 {
834 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",
835 channel_moments);
836 break;
837 }
838 }
839 if (image->alpha_trait == BlendPixelTrait)
840 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",
841 channel_moments);
cristy878fe612014-01-19 02:03:40 +0000842 if (colorspace != GRAYColorspace)
843 {
844 (void) FormatLocaleFile(file," Image moments:\n");
845 (void) PrintChannelMoments(file,(PixelChannel) MaxPixelChannels,
846 "Overall",channel_moments);
847 }
cristybd4a3c22014-01-07 15:09:37 +0000848 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
849 channel_moments);
850 }
cristybd822072010-01-27 00:30:00 +0000851 if (channel_features != (ChannelFeatures *) NULL)
852 {
cristy1e604812011-05-19 18:07:50 +0000853 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
854 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000855 switch (colorspace)
856 {
857 case RGBColorspace:
858 default:
cristy549a37e2010-01-26 15:24:15 +0000859 {
cristy95a072b2011-10-13 18:03:11 +0000860 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000861 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000862 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
863 channel_features);
864 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
865 channel_features);
cristybd822072010-01-27 00:30:00 +0000866 break;
867 }
868 case CMYKColorspace:
869 {
cristy95a072b2011-10-13 18:03:11 +0000870 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000871 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000872 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000873 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000874 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
875 channel_features);
876 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000877 channel_features);
878 break;
879 }
880 case GRAYColorspace:
881 {
cristy95a072b2011-10-13 18:03:11 +0000882 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
883 channel_features);
cristybd822072010-01-27 00:30:00 +0000884 break;
885 }
886 }
cristy8a46d822012-08-28 23:32:39 +0000887 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000888 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
889 channel_features);
cristybd822072010-01-27 00:30:00 +0000890 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
891 channel_features);
892 }
893 if (ping == MagickFalse)
894 {
cristy3ed852e2009-09-05 21:47:34 +0000895 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000896 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy7c3af952011-10-20 16:04:16 +0000897 GetImageTotalInkDensity(image,exception)/(double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000898 x=0;
cristy8a46d822012-08-28 23:32:39 +0000899 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000900 {
cristy4c08aed2011-07-01 19:47:50 +0000901 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000902 *p;
903
cristy4c08aed2011-07-01 19:47:50 +0000904 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000905 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000906 {
907 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000908 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000909 break;
cristybb503372010-05-27 20:51:26 +0000910 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000911 {
cristy4c08aed2011-07-01 19:47:50 +0000912 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000913 break;
cristyed231572011-07-14 02:18:59 +0000914 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000915 }
cristybb503372010-05-27 20:51:26 +0000916 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000917 break;
918 }
cristybb503372010-05-27 20:51:26 +0000919 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000920 {
921 char
922 tuple[MaxTextExtent];
923
cristy4c08aed2011-07-01 19:47:50 +0000924 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000925 pixel;
926
cristy4c08aed2011-07-01 19:47:50 +0000927 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000928 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000929 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000930 exception);
cristyb51dff52011-05-19 16:55:47 +0000931 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000932 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000933 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000934 }
935 }
cristya4037272011-08-28 15:11:39 +0000936 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000937 {
cristy4c967562011-06-16 01:46:57 +0000938 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000939 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000940 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000941 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000942 }
cristye64d6372012-12-07 18:56:48 +0000943 else
944 {
anthony6f201312012-03-30 04:08:15 +0000945 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000946 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000947 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
948 GetNumberColors(image,(FILE *) NULL,exception));
949 }
cristy3ed852e2009-09-05 21:47:34 +0000950 }
951 if (image->storage_class == PseudoClass)
952 {
cristy404558c2012-12-07 19:14:39 +0000953 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
954 image->colors);
cristye64d6372012-12-07 18:56:48 +0000955 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000956 if (image->colors <= 1024)
957 {
958 char
959 color[MaxTextExtent],
960 hex[MaxTextExtent],
961 tuple[MaxTextExtent];
962
cristy4c08aed2011-07-01 19:47:50 +0000963 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000964 pixel;
965
cristy101ab702011-10-13 13:06:32 +0000966 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000967 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000968
cristy4c08aed2011-07-01 19:47:50 +0000969 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000970 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000971 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000972 {
cristy9d8c8ce2011-10-25 16:13:52 +0000973 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000974 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000975 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000976 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000977 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000978 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000979 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000980 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000981 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000982 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000983 if (pixel.colorspace == CMYKColorspace)
984 {
985 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000986 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000987 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000988 }
cristy8a46d822012-08-28 23:32:39 +0000989 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000990 {
991 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000992 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000993 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000994 }
995 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000996 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000997 exception);
cristy3ed852e2009-09-05 21:47:34 +0000998 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000999 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
1000 hex,color);
cristy3ed852e2009-09-05 21:47:34 +00001001 p++;
1002 }
1003 }
1004 }
1005 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001006 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +00001007 image->error.mean_error_per_pixel);
1008 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001009 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +00001010 image->error.normalized_mean_error);
1011 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001012 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +00001013 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +00001014 (void) FormatLocaleFile(file," Rendering intent: %s\n",
1015 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1016 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +00001017 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001018 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +00001019 if ((image->chromaticity.red_primary.x != 0.0) ||
1020 (image->chromaticity.green_primary.x != 0.0) ||
1021 (image->chromaticity.blue_primary.x != 0.0) ||
1022 (image->chromaticity.white_point.x != 0.0))
1023 {
1024 /*
1025 Display image chromaticity.
1026 */
cristyb51dff52011-05-19 16:55:47 +00001027 (void) FormatLocaleFile(file," Chromaticity:\n");
1028 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001029 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001030 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001031 image->chromaticity.green_primary.x,
1032 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001033 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001034 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001035 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001036 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
1037 }
1038 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +00001039 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
1040 (double) image->extract_info.width,(double) image->extract_info.height,
1041 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +00001042 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001043 exception);
cristyb51dff52011-05-19 16:55:47 +00001044 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001045 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001046 exception);
cristyb51dff52011-05-19 16:55:47 +00001047 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001048 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001049 exception);
cristyb51dff52011-05-19 16:55:47 +00001050 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001051 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001052 exception);
cristyb51dff52011-05-19 16:55:47 +00001053 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +00001054 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
1055 MagickInterlaceOptions,(ssize_t) image->interlace));
1056 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
1057 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +00001058 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001059 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +00001060 if ((image->page.width != 0) || (image->page.height != 0) ||
1061 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +00001062 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
1063 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +00001064 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +00001065 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +00001066 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +00001067 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +00001068 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001069 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +00001070 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +00001071 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +00001072 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +00001073 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +00001074 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
1075 image->iterations);
cristy3ed852e2009-09-05 21:47:34 +00001076 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +00001077 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
1078 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +00001079 else
1080 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +00001081 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
1082 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001083 MagickCompressOptions,(ssize_t) image->compression));
cristy07f628a2013-08-20 11:43:55 +00001084 if (image->quality != UndefinedCompressionQuality)
cristy92beec62013-08-26 12:23:46 +00001085 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +00001086 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
1087 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +00001088 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001089 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +00001090 if (image->directory != (char *) NULL)
1091 {
1092 Image
1093 *tile;
1094
1095 ImageInfo
1096 *image_info;
1097
1098 register char
1099 *p,
1100 *q;
1101
1102 WarningHandler
1103 handler;
1104
1105 /*
1106 Display visual image directory.
1107 */
1108 image_info=AcquireImageInfo();
1109 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +00001110 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +00001111 for (p=image->directory; *p != '\0'; p++)
1112 {
1113 q=p;
1114 while ((*q != '\n') && (*q != '\0'))
1115 q++;
1116 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
1117 p=q;
cristyb51dff52011-05-19 16:55:47 +00001118 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +00001119 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +00001120 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001121 (void) SetWarningHandler(handler);
1122 if (tile == (Image *) NULL)
1123 {
cristyb51dff52011-05-19 16:55:47 +00001124 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +00001125 continue;
1126 }
cristy1e604812011-05-19 18:07:50 +00001127 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1128 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +00001129 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001130 ResetImagePropertyIterator(tile);
1131 property=GetNextImageProperty(tile);
1132 while (property != (const char *) NULL)
1133 {
cristyb51dff52011-05-19 16:55:47 +00001134 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +00001135 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001136 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001137 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001138 property=GetNextImageProperty(tile);
1139 }
1140 tile=DestroyImage(tile);
1141 }
1142 image_info=DestroyImageInfo(image_info);
1143 }
cristyd15e6592011-10-15 00:13:06 +00001144 (void) GetImageProperty(image,"exif:*",exception);
cristy3ed852e2009-09-05 21:47:34 +00001145 ResetImagePropertyIterator(image);
1146 property=GetNextImageProperty(image);
1147 if (property != (const char *) NULL)
1148 {
1149 /*
1150 Display image properties.
1151 */
cristyb51dff52011-05-19 16:55:47 +00001152 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +00001153 while (property != (const char *) NULL)
1154 {
cristyb51dff52011-05-19 16:55:47 +00001155 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +00001156 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001157 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001158 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001159 property=GetNextImageProperty(image);
1160 }
1161 }
cristyb51dff52011-05-19 16:55:47 +00001162 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +00001163 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +00001164 if (value != (const char *) NULL)
1165 {
1166 /*
1167 Display clipping path.
1168 */
cristyb51dff52011-05-19 16:55:47 +00001169 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +00001170 if (strlen(value) > 80)
1171 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +00001172 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001173 }
1174 ResetImageProfileIterator(image);
1175 name=GetNextImageProfile(image);
1176 if (name != (char *) NULL)
1177 {
1178 const StringInfo
1179 *profile;
1180
1181 /*
1182 Identify image profiles.
1183 */
cristyb51dff52011-05-19 16:55:47 +00001184 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +00001185 while (name != (char *) NULL)
1186 {
1187 profile=GetImageProfile(image,name);
1188 if (profile == (StringInfo *) NULL)
1189 continue;
cristy1e604812011-05-19 18:07:50 +00001190 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1191 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001192#if defined(MAGICKCORE_LCMS_DELEGATE)
1193 if ((LocaleCompare(name,"icc") == 0) ||
1194 (LocaleCompare(name,"icm") == 0))
1195 {
1196 cmsHPROFILE
1197 icc_profile;
1198
1199 icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile),
cristyd09bcf92010-03-25 03:04:45 +00001200 (cmsUInt32Number) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001201 if (icc_profile != (cmsHPROFILE *) NULL)
1202 {
cristyd09bcf92010-03-25 03:04:45 +00001203#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
cristy3ed852e2009-09-05 21:47:34 +00001204 const char
1205 *name;
1206
1207 name=cmsTakeProductName(icc_profile);
1208 if (name != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001209 (void) FormatLocaleFile(file," %s\n",name);
cristyd09bcf92010-03-25 03:04:45 +00001210#else
1211 char
1212 info[MaxTextExtent];
1213
1214 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription,
1215 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001216 (void) FormatLocaleFile(file," Description: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001217 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer,
1218 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001219 (void) FormatLocaleFile(file," Manufacturer: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001220 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en",
1221 "US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001222 (void) FormatLocaleFile(file," Model: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001223 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright,
1224 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001225 (void) FormatLocaleFile(file," Copyright: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001226#endif
cristy3ed852e2009-09-05 21:47:34 +00001227 (void) cmsCloseProfile(icc_profile);
1228 }
1229 }
1230#endif
1231 if (LocaleCompare(name,"iptc") == 0)
1232 {
1233 char
1234 *attribute,
1235 **attribute_list;
1236
1237 const char
1238 *tag;
1239
cristycee97112010-05-28 00:44:52 +00001240 long
cristy3ed852e2009-09-05 21:47:34 +00001241 dataset,
1242 record,
1243 sentinel;
1244
cristybb503372010-05-27 20:51:26 +00001245 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001246 j;
1247
1248 size_t
1249 length,
1250 profile_length;
1251
1252 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +00001253 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +00001254 {
1255 length=1;
1256 sentinel=GetStringInfoDatum(profile)[i++];
1257 if (sentinel != 0x1c)
1258 continue;
1259 dataset=GetStringInfoDatum(profile)[i++];
1260 record=GetStringInfoDatum(profile)[i++];
1261 switch (record)
1262 {
1263 case 5: tag="Image Name"; break;
1264 case 7: tag="Edit Status"; break;
1265 case 10: tag="Priority"; break;
1266 case 15: tag="Category"; break;
1267 case 20: tag="Supplemental Category"; break;
1268 case 22: tag="Fixture Identifier"; break;
1269 case 25: tag="Keyword"; break;
1270 case 30: tag="Release Date"; break;
1271 case 35: tag="Release Time"; break;
1272 case 40: tag="Special Instructions"; break;
1273 case 45: tag="Reference Service"; break;
1274 case 47: tag="Reference Date"; break;
1275 case 50: tag="Reference Number"; break;
1276 case 55: tag="Created Date"; break;
1277 case 60: tag="Created Time"; break;
1278 case 65: tag="Originating Program"; break;
1279 case 70: tag="Program Version"; break;
1280 case 75: tag="Object Cycle"; break;
1281 case 80: tag="Byline"; break;
1282 case 85: tag="Byline Title"; break;
1283 case 90: tag="City"; break;
1284 case 95: tag="Province State"; break;
1285 case 100: tag="Country Code"; break;
1286 case 101: tag="Country"; break;
1287 case 103: tag="Original Transmission Reference"; break;
1288 case 105: tag="Headline"; break;
1289 case 110: tag="Credit"; break;
1290 case 115: tag="Src"; break;
1291 case 116: tag="Copyright String"; break;
1292 case 120: tag="Caption"; break;
1293 case 121: tag="Local Caption"; break;
1294 case 122: tag="Caption Writer"; break;
1295 case 200: tag="Custom Field 1"; break;
1296 case 201: tag="Custom Field 2"; break;
1297 case 202: tag="Custom Field 3"; break;
1298 case 203: tag="Custom Field 4"; break;
1299 case 204: tag="Custom Field 5"; break;
1300 case 205: tag="Custom Field 6"; break;
1301 case 206: tag="Custom Field 7"; break;
1302 case 207: tag="Custom Field 8"; break;
1303 case 208: tag="Custom Field 9"; break;
1304 case 209: tag="Custom Field 10"; break;
1305 case 210: tag="Custom Field 11"; break;
1306 case 211: tag="Custom Field 12"; break;
1307 case 212: tag="Custom Field 13"; break;
1308 case 213: tag="Custom Field 14"; break;
1309 case 214: tag="Custom Field 15"; break;
1310 case 215: tag="Custom Field 16"; break;
1311 case 216: tag="Custom Field 17"; break;
1312 case 217: tag="Custom Field 18"; break;
1313 case 218: tag="Custom Field 19"; break;
1314 case 219: tag="Custom Field 20"; break;
1315 default: tag="unknown"; break;
1316 }
cristy1e604812011-05-19 18:07:50 +00001317 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1318 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001319 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1320 length|=GetStringInfoDatum(profile)[i++];
1321 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001322 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001323 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1324 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001325 if (attribute != (char *) NULL)
1326 {
1327 (void) CopyMagickString(attribute,(char *)
1328 GetStringInfoDatum(profile)+i,length+1);
1329 attribute_list=StringToList(attribute);
1330 if (attribute_list != (char **) NULL)
1331 {
1332 for (j=0; attribute_list[j] != (char *) NULL; j++)
1333 {
1334 (void) fputs(attribute_list[j],file);
1335 (void) fputs("\n",file);
1336 attribute_list[j]=(char *) RelinquishMagickMemory(
1337 attribute_list[j]);
1338 }
1339 attribute_list=(char **) RelinquishMagickMemory(
1340 attribute_list);
1341 }
1342 attribute=DestroyString(attribute);
1343 }
1344 }
1345 }
1346 if (image->debug != MagickFalse)
1347 PrintStringInfo(file,name,profile);
1348 name=GetNextImageProfile(image);
1349 }
1350 }
1351 ResetImageArtifactIterator(image);
1352 artifact=GetNextImageArtifact(image);
1353 if (artifact != (const char *) NULL)
1354 {
1355 /*
1356 Display image artifacts.
1357 */
cristyb51dff52011-05-19 16:55:47 +00001358 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001359 while (artifact != (const char *) NULL)
1360 {
cristyb51dff52011-05-19 16:55:47 +00001361 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001362 value=GetImageArtifact(image,artifact);
1363 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001364 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001365 artifact=GetNextImageArtifact(image);
1366 }
1367 }
1368 ResetImageRegistryIterator();
1369 registry=GetNextImageRegistry();
1370 if (registry != (const char *) NULL)
1371 {
1372 /*
1373 Display image registry.
1374 */
cristyb51dff52011-05-19 16:55:47 +00001375 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001376 while (registry != (const char *) NULL)
1377 {
cristyb51dff52011-05-19 16:55:47 +00001378 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001379 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001380 exception);
cristy3ed852e2009-09-05 21:47:34 +00001381 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001382 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001383 registry=GetNextImageRegistry();
1384 }
1385 }
cristyb51dff52011-05-19 16:55:47 +00001386 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001387 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001388 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001389 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001390 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001391 MagickFalse,format);
1392 if (strlen(format) > 1)
1393 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001394 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001395 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001396 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001397 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1398 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001399 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001400 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1401 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001402 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001403 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001404 (void) fflush(file);
1405 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1406}