blob: b144e17b8e3c2a65c1736ec8bb1af6904764aa61 [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"
cristyd09bcf92010-03-25 03:04:45 +000098
99/*
cristy3ed852e2009-09-05 21:47:34 +0000100%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
101% %
102% %
103% %
104% I d e n t i f y I m a g e %
105% %
106% %
107% %
108%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109%
110% IdentifyImage() identifies an image by printing its attributes to the file.
111% Attributes include the image width, height, size, and others.
112%
113% The format of the IdentifyImage method is:
114%
115% MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000116% const MagickBooleanType verbose,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000117%
118% A description of each parameter follows:
119%
120% o image: the image.
121%
122% o file: the file, typically stdout.
123%
124% o verbose: A value other than zero prints more detailed information
125% about the image.
126%
cristya4037272011-08-28 15:11:39 +0000127% o exception: return any errors or warnings in this structure.
128%
cristy3ed852e2009-09-05 21:47:34 +0000129*/
130
cristyab008852013-09-02 19:36:34 +0000131static ChannelStatistics *GetLocationStatistics(const Image *image,
132 const StatisticType type,ExceptionInfo *exception)
cristyf61a67f2013-09-02 19:22:54 +0000133{
cristyab008852013-09-02 19:36:34 +0000134 ChannelStatistics
135 *channel_statistics;
136
cristyf61a67f2013-09-02 19:22:54 +0000137 register ssize_t
138 i;
139
140 ssize_t
141 y;
142
cristyab008852013-09-02 19:36:34 +0000143 assert(image != (Image *) NULL);
144 assert(image->signature == MagickSignature);
cristyf61a67f2013-09-02 19:22:54 +0000145 if (image->debug != MagickFalse)
146 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristyab008852013-09-02 19:36:34 +0000147 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
148 MaxPixelChannels+1,sizeof(*channel_statistics));
149 if (channel_statistics == (ChannelStatistics *) NULL)
150 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
151 (void) ResetMagickMemory(channel_statistics,0,(MaxPixelChannels+1)*
152 sizeof(*channel_statistics));
cristyf61a67f2013-09-02 19:22:54 +0000153 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
cristyab008852013-09-02 19:36:34 +0000154 {
cristyf61a67f2013-09-02 19:22:54 +0000155 switch (type)
156 {
157 case MaximumStatistic:
158 default:
159 {
cristyfe181a72014-02-02 21:17:43 +0000160 channel_statistics[i].maxima=(-MagickMaximumValue);
cristyf61a67f2013-09-02 19:22:54 +0000161 break;
162 }
163 case MinimumStatistic:
164 {
cristyfe181a72014-02-02 21:17:43 +0000165 channel_statistics[i].minima=MagickMaximumValue;
cristyf61a67f2013-09-02 19:22:54 +0000166 break;
167 }
168 }
cristyab008852013-09-02 19:36:34 +0000169 }
cristyf61a67f2013-09-02 19:22:54 +0000170 for (y=0; y < (ssize_t) image->rows; y++)
171 {
172 register const Quantum
173 *restrict p;
174
175 register ssize_t
176 x;
177
178 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
179 if (p == (const Quantum *) NULL)
180 break;
181 for (x=0; x < (ssize_t) image->columns; x++)
182 {
183 register ssize_t
184 i;
185
186 if (GetPixelReadMask(image,p) == 0)
187 {
188 p+=GetPixelChannels(image);
189 continue;
190 }
191 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
192 {
193 PixelChannel channel=GetPixelChannelChannel(image,i);
194 PixelTrait traits=GetPixelChannelTraits(image,channel);
195 if (traits == UndefinedPixelTrait)
196 continue;
197 switch (type)
198 {
199 case MaximumStatistic:
200 default:
201 {
cristyab008852013-09-02 19:36:34 +0000202 if ((double) p[i] > channel_statistics[channel].maxima)
203 channel_statistics[channel].maxima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000204 break;
205 }
206 case MinimumStatistic:
207 {
cristyab008852013-09-02 19:36:34 +0000208 if ((double) p[i] < channel_statistics[channel].minima)
209 channel_statistics[channel].minima=(double) p[i];
cristyf61a67f2013-09-02 19:22:54 +0000210 break;
211 }
212 }
213 }
214 p+=GetPixelChannels(image);
215 }
216 }
cristyab008852013-09-02 19:36:34 +0000217 return(channel_statistics);
cristyf61a67f2013-09-02 19:22:54 +0000218}
cristyab008852013-09-02 19:36:34 +0000219
cristy95a072b2011-10-13 18:03:11 +0000220static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
cristye1897792010-01-29 02:05:50 +0000221 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000222{
cristye1897792010-01-29 02:05:50 +0000223#define PrintFeature(feature) \
224 GetMagickPrecision(),(feature)[0], \
225 GetMagickPrecision(),(feature)[1], \
226 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000227 GetMagickPrecision(),(feature)[3], \
228 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000229
cristybd822072010-01-27 00:30:00 +0000230#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000231 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000232 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000233 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000234 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000235 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000236 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristya936dda2014-01-19 14:52:42 +0000237 " Sum of Squares Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000238 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000239 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000240 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000241 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000242 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000243 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000244 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000245 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000246 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000247 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000248 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000249 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000250 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000251 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000252 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000253 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000254 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000255 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000256 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000257 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000258 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000259
cristy20ec7592011-05-29 01:28:05 +0000260 ssize_t
261 n;
cristybd822072010-01-27 00:30:00 +0000262
cristy20ec7592011-05-29 01:28:05 +0000263 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000264 PrintFeature(channel_features[channel].angular_second_moment),
265 PrintFeature(channel_features[channel].contrast),
266 PrintFeature(channel_features[channel].correlation),
267 PrintFeature(channel_features[channel].variance_sum_of_squares),
268 PrintFeature(channel_features[channel].inverse_difference_moment),
269 PrintFeature(channel_features[channel].sum_average),
270 PrintFeature(channel_features[channel].sum_variance),
271 PrintFeature(channel_features[channel].sum_entropy),
272 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000273 PrintFeature(channel_features[channel].difference_variance),
274 PrintFeature(channel_features[channel].difference_entropy),
275 PrintFeature(channel_features[channel].measure_of_correlation_1),
276 PrintFeature(channel_features[channel].measure_of_correlation_2),
277 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000278 return(n);
cristybd822072010-01-27 00:30:00 +0000279}
280
cristy7d8529e2013-09-01 17:03:36 +0000281static ssize_t PrintChannelLocations(FILE *file,const Image *image,
cristyab008852013-09-02 19:36:34 +0000282 const PixelChannel channel,const char *name,const StatisticType type,
283 const size_t max_locations,const ChannelStatistics *channel_statistics)
cristy7d8529e2013-09-01 17:03:36 +0000284{
cristyab008852013-09-02 19:36:34 +0000285 double
286 target;
287
cristy7d8529e2013-09-01 17:03:36 +0000288 ExceptionInfo
289 *exception;
290
291 ssize_t
292 n,
293 y;
cristy858ba702013-09-01 18:47:18 +0000294
cristyab008852013-09-02 19:36:34 +0000295 switch (type)
296 {
297 case MaximumStatistic:
298 default:
299 {
300 target=channel_statistics[channel].maxima;
301 break;
302 }
303 case MinimumStatistic:
304 {
305 target=channel_statistics[channel].minima;
306 break;
307 }
308 }
cristy4ead6fc2014-02-13 00:07:44 +0000309 (void) FormatLocaleFile(file," %s: %.*g (%.*g)",name,GetMagickPrecision(),
cristyab008852013-09-02 19:36:34 +0000310 target,GetMagickPrecision(),QuantumScale*target);
cristy7d8529e2013-09-01 17:03:36 +0000311 exception=AcquireExceptionInfo();
312 n=0;
313 for (y=0; y < (ssize_t) image->rows; y++)
314 {
315 register const Quantum
316 *p;
317
318 ssize_t
cristyab008852013-09-02 19:36:34 +0000319 offset,
cristy7d8529e2013-09-01 17:03:36 +0000320 x;
321
322 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
323 if (p == (const Quantum *) NULL)
324 break;
325 for (x=0; x < (ssize_t) image->columns; x++)
326 {
327 MagickBooleanType
328 match;
329
330 PixelTrait traits=GetPixelChannelTraits(image,channel);
331 if (traits == UndefinedPixelTrait)
332 continue;
cristyab008852013-09-02 19:36:34 +0000333 offset=GetPixelChannelOffset(image,channel);
334 match=fabs((double) p[offset]-target) < 0.5 ? MagickTrue : MagickFalse;
cristy7d8529e2013-09-01 17:03:36 +0000335 if (match != MagickFalse)
336 {
cristy220c4d52013-11-27 19:31:32 +0000337 if ((max_locations != 0) && (n >= (ssize_t) max_locations))
cristy7d8529e2013-09-01 17:03:36 +0000338 break;
cristy4ead6fc2014-02-13 00:07:44 +0000339 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
cristy7d8529e2013-09-01 17:03:36 +0000340 n++;
341 }
cristy858ba702013-09-01 18:47:18 +0000342 p+=GetPixelChannels(image);
cristy7d8529e2013-09-01 17:03:36 +0000343 }
344 if (x < (ssize_t) image->columns)
345 break;
346 }
347 (void) FormatLocaleFile(file,"\n");
348 return(n);
349}
350
cristybd4a3c22014-01-07 15:09:37 +0000351static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
cristycb9af4a2014-02-05 13:31:55 +0000352 const char *name,const double scale,const ChannelMoments *channel_moments)
cristybd4a3c22014-01-07 15:09:37 +0000353{
cristycb9af4a2014-02-05 13:31:55 +0000354 double
355 powers[8] = { 1.0, 2.0, 3.0, 3.0, 6.0, 4.0, 6.0, 4.0 };
356
cristy89298f32014-01-08 00:21:50 +0000357 register ssize_t
358 i;
359
cristybd4a3c22014-01-07 15:09:37 +0000360 ssize_t
361 n;
362
cristy89298f32014-01-08 00:21:50 +0000363 n=FormatLocaleFile(file," %s:\n",name);
364 n+=FormatLocaleFile(file," Centroid: %.*g,%.*g\n",
365 GetMagickPrecision(),channel_moments[channel].centroid.x,
366 GetMagickPrecision(),channel_moments[channel].centroid.y);
367 n+=FormatLocaleFile(file," Ellipse Semi-Major/Minor axis: %.*g,%.*g\n",
368 GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
369 GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
370 n+=FormatLocaleFile(file," Ellipse angle: %.*g\n",
371 GetMagickPrecision(),channel_moments[channel].ellipse_angle);
372 n+=FormatLocaleFile(file," Ellipse eccentricity: %.*g\n",
373 GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
cristycb9af4a2014-02-05 13:31:55 +0000374 n+=FormatLocaleFile(file," Ellipse intensity: %.*g (%.*g)\n",
375 GetMagickPrecision(),pow(scale,powers[0])*
376 channel_moments[channel].ellipse_intensity,GetMagickPrecision(),
377 channel_moments[channel].ellipse_intensity);
cristy89298f32014-01-08 00:21:50 +0000378 for (i=0; i < 8; i++)
cristycb9af4a2014-02-05 13:31:55 +0000379 n+=FormatLocaleFile(file," I%.20g: %.*g (%.*g)\n",i+1.0,
380 GetMagickPrecision(),channel_moments[channel].I[i]/pow(scale,powers[i]),
381 GetMagickPrecision(),channel_moments[channel].I[i]);
cristybd4a3c22014-01-07 15:09:37 +0000382 return(n);
383}
384
cristy95a072b2011-10-13 18:03:11 +0000385static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000386 const char *name,const double scale,
387 const ChannelStatistics *channel_statistics)
388{
389#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000390 " (%g)\n max: " QuantumFormat " (%g)\n" \
391 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
392 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000393
cristy20ec7592011-05-29 01:28:05 +0000394 ssize_t
395 n;
cristybd822072010-01-27 00:30:00 +0000396
cristy20ec7592011-05-29 01:28:05 +0000397 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000398 channel_statistics[channel].minima),channel_statistics[channel].minima/
399 (double) QuantumRange,ClampToQuantum(scale*
400 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
401 (double) QuantumRange,scale*channel_statistics[channel].mean,
402 channel_statistics[channel].mean/(double) QuantumRange,scale*
403 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000404 channel_statistics[channel].standard_deviation/(double) QuantumRange,
405 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000406 return(n);
cristybd822072010-01-27 00:30:00 +0000407}
408
409MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000410 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000411{
cristy3ed852e2009-09-05 21:47:34 +0000412 char
413 color[MaxTextExtent],
414 format[MaxTextExtent],
415 key[MaxTextExtent];
416
cristybd822072010-01-27 00:30:00 +0000417 ChannelFeatures
418 *channel_features;
419
cristybd4a3c22014-01-07 15:09:37 +0000420 ChannelMoments
421 *channel_moments;
422
cristybd822072010-01-27 00:30:00 +0000423 ChannelStatistics
424 *channel_statistics;
425
cristy3ed852e2009-09-05 21:47:34 +0000426 ColorspaceType
427 colorspace;
428
429 const char
430 *artifact,
cristy7d8529e2013-09-01 17:03:36 +0000431 *locate,
cristy3ed852e2009-09-05 21:47:34 +0000432 *name,
433 *property,
434 *registry,
435 *value;
436
437 const MagickInfo
438 *magick_info;
439
cristy3ed852e2009-09-05 21:47:34 +0000440 double
441 elapsed_time,
cristycb9af4a2014-02-05 13:31:55 +0000442 scale,
cristy3ed852e2009-09-05 21:47:34 +0000443 user_time;
444
cristy3ed852e2009-09-05 21:47:34 +0000445 ImageType
446 type;
447
cristy3ed852e2009-09-05 21:47:34 +0000448 MagickBooleanType
449 ping;
450
cristy4c08aed2011-07-01 19:47:50 +0000451 register const Quantum
452 *p;
453
cristybb503372010-05-27 20:51:26 +0000454 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000455 i,
456 x;
457
cristybb503372010-05-27 20:51:26 +0000458 size_t
cristycb9af4a2014-02-05 13:31:55 +0000459 distance;
cristy3ed852e2009-09-05 21:47:34 +0000460
cristy9d314ff2011-03-09 01:30:28 +0000461 ssize_t
462 y;
463
cristy3ed852e2009-09-05 21:47:34 +0000464 assert(image != (Image *) NULL);
465 assert(image->signature == MagickSignature);
466 if (image->debug != MagickFalse)
467 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
468 if (file == (FILE *) NULL)
469 file=stdout;
cristy4ead6fc2014-02-13 00:07:44 +0000470 locate=GetImageArtifact(image,"identify:locate");
471 if (locate != (const char *) NULL)
472 {
473 const char
474 *limit;
475
476 size_t
477 max_locations;
478
479 StatisticType
480 type;
481
482 /*
483 Display minimum, maximum, or mean pixel locations.
484 */
485 type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
486 MagickFalse,locate);
487 limit=GetImageArtifact(image,"identify:limit");
488 max_locations=0;
489 if (limit != (const char *) NULL)
490 max_locations=StringToUnsignedLong(limit);
491 channel_statistics=GetLocationStatistics(image,type,exception);
492 if (channel_statistics == (ChannelStatistics *) NULL)
493 return(MagickFalse);
494 colorspace=image->colorspace;
495 if (IsImageGray(image,exception) != MagickFalse)
496 colorspace=GRAYColorspace;
497 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
498 switch (colorspace)
499 {
500 case RGBColorspace:
501 default:
502 {
503 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
504 type,max_locations,channel_statistics);
505 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
506 type,max_locations,channel_statistics);
507 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
508 type,max_locations,channel_statistics);
509 break;
510 }
511 case CMYKColorspace:
512 {
513 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
514 type,max_locations,channel_statistics);
515 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
516 type,max_locations,channel_statistics);
517 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
518 type,max_locations,channel_statistics);
519 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
520 type,max_locations,channel_statistics);
521 break;
522 }
523 case GRAYColorspace:
524 {
525 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
526 type,max_locations,channel_statistics);
527 break;
528 }
529 }
530 if (image->alpha_trait == BlendPixelTrait)
531 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
532 type,max_locations,channel_statistics);
533 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
534 channel_statistics);
535 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
536 }
cristy3ed852e2009-09-05 21:47:34 +0000537 *format='\0';
538 elapsed_time=GetElapsedTime(&image->timer);
539 user_time=GetUserTime(&image->timer);
540 GetTimerInfo(&image->timer);
541 if (verbose == MagickFalse)
542 {
543 /*
544 Display summary info about the image.
545 */
546 if (*image->magick_filename != '\0')
547 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000548 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000549 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000550 (GetNextImageInList(image) == (Image *) NULL) &&
551 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000552 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000553 else
cristy1e604812011-05-19 18:07:50 +0000554 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
555 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000556 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000557 if ((image->magick_columns != 0) || (image->magick_rows != 0))
558 if ((image->magick_columns != image->columns) ||
559 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000560 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
561 image->magick_columns,(double) image->magick_rows);
562 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
563 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000564 if ((image->page.width != 0) || (image->page.height != 0) ||
565 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000566 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000567 image->page.width,(double) image->page.height,(double) image->page.x,
568 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000569 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000570 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000571 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
572 MagickTypeOptions,(ssize_t) image->type));
cristyab008852013-09-02 19:36:34 +0000573 if (image->colorspace != UndefinedColorspace)
cristy479d4622012-08-22 13:03:27 +0000574 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
575 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000576 if (image->storage_class == DirectClass)
577 {
cristy3ed852e2009-09-05 21:47:34 +0000578 if (image->total_colors != 0)
579 {
cristyb9080c92009-12-01 20:13:26 +0000580 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000581 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000582 }
583 }
584 else
585 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000586 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000587 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000588 else
cristy479d4622012-08-22 13:03:27 +0000589 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000590 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000591 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000592 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000593 (image->error.mean_error_per_pixel+0.5),
594 image->error.normalized_mean_error,
595 image->error.normalized_maximum_error);
596 if (GetBlobSize(image) != 0)
597 {
cristyb9080c92009-12-01 20:13:26 +0000598 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000599 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000600 }
cristy1e604812011-05-19 18:07:50 +0000601 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
602 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
603 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
604 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000605 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000606 (void) fflush(file);
607 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
608 }
609 /*
610 Display verbose info about the image.
611 */
cristy4c08aed2011-07-01 19:47:50 +0000612 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000613 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000614 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000615 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000616 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000617 if (*image->magick_filename != '\0')
618 if (LocaleCompare(image->magick_filename,image->filename) != 0)
619 {
620 char
621 filename[MaxTextExtent];
622
623 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000624 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000625 }
cristya4037272011-08-28 15:11:39 +0000626 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000627 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000628 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000629 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000630 else
cristyb51dff52011-05-19 16:55:47 +0000631 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000632 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000633 if ((magick_info == (const MagickInfo *) NULL) ||
634 (GetMagickMimeType(magick_info) != (const char *) NULL))
635 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
dirk55584952013-08-09 18:54:28 +0000636 magick_info));
cristy1e604812011-05-19 18:07:50 +0000637 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
638 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000639 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000640 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
641 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000642 if ((image->magick_columns != 0) || (image->magick_rows != 0))
643 if ((image->magick_columns != image->columns) ||
644 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000645 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000646 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000647 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000648 {
cristy2a11bef2011-10-28 18:33:11 +0000649 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
650 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000651 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000652 image->columns/image->resolution.x,(double) image->rows/
653 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000654 }
cristyb51dff52011-05-19 16:55:47 +0000655 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000656 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000657 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
658 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000659 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000660 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000661 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000662 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000663 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000664 /*
665 Detail channel depth and extrema.
666 */
cristyb51dff52011-05-19 16:55:47 +0000667 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000668 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000669 channel_statistics=(ChannelStatistics *) NULL;
cristybd4a3c22014-01-07 15:09:37 +0000670 channel_moments=(ChannelMoments *) NULL;
cristy15a88782010-01-31 23:24:49 +0000671 channel_features=(ChannelFeatures *) NULL;
672 colorspace=image->colorspace;
cristycb9af4a2014-02-05 13:31:55 +0000673 scale=1.0;
cristy3ed852e2009-09-05 21:47:34 +0000674 if (ping == MagickFalse)
675 {
cristybb503372010-05-27 20:51:26 +0000676 size_t
cristy3ed852e2009-09-05 21:47:34 +0000677 depth;
678
cristya4037272011-08-28 15:11:39 +0000679 channel_statistics=GetImageStatistics(image,exception);
cristye287bba2013-09-02 20:04:42 +0000680 if (channel_statistics == (ChannelStatistics *) NULL)
681 return(MagickFalse);
cristybd4a3c22014-01-07 15:09:37 +0000682 artifact=GetImageArtifact(image,"identify:moments");
683 if (artifact != (const char *) NULL)
684 channel_moments=GetImageMoments(image,exception);
cristy15a88782010-01-31 23:24:49 +0000685 artifact=GetImageArtifact(image,"identify:features");
686 if (artifact != (const char *) NULL)
687 {
688 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000689 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000690 }
cristya4037272011-08-28 15:11:39 +0000691 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000692 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000693 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
694 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000695 else
cristyb51dff52011-05-19 16:55:47 +0000696 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000697 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000698 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000699 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000700 colorspace=GRAYColorspace;
701 switch (colorspace)
702 {
703 case RGBColorspace:
704 default:
705 {
cristycffbc332013-09-01 18:25:19 +0000706 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000707 channel_statistics[RedPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000708 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000709 channel_statistics[GreenPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000710 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000711 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000712 break;
713 }
714 case CMYKColorspace:
715 {
cristycffbc332013-09-01 18:25:19 +0000716 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000717 channel_statistics[CyanPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000718 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000719 channel_statistics[MagentaPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000720 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000721 channel_statistics[YellowPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000722 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000723 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000724 break;
725 }
726 case GRAYColorspace:
727 {
cristycffbc332013-09-01 18:25:19 +0000728 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000729 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000730 break;
731 }
732 }
cristy8a46d822012-08-28 23:32:39 +0000733 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000734 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000735 channel_statistics[AlphaPixelChannel].depth);
cristycb9af4a2014-02-05 13:31:55 +0000736 scale=1.0;
cristy3ed852e2009-09-05 21:47:34 +0000737 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristycb9af4a2014-02-05 13:31:55 +0000738 scale=(double) QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000739 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000740 }
741 if (channel_statistics != (ChannelStatistics *) NULL)
742 {
cristyb51dff52011-05-19 16:55:47 +0000743 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000744 (void) FormatLocaleFile(file," Pixels: %.20g\n",
745 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000746 switch (colorspace)
747 {
748 case RGBColorspace:
749 default:
750 {
cristy95a072b2011-10-13 18:03:11 +0000751 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
752 scale,channel_statistics);
753 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
754 scale,channel_statistics);
755 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
756 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000757 break;
758 }
759 case CMYKColorspace:
760 {
cristy95a072b2011-10-13 18:03:11 +0000761 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
762 scale,channel_statistics);
763 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
764 scale,channel_statistics);
765 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
766 scale,channel_statistics);
767 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
768 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000769 break;
770 }
771 case GRAYColorspace:
772 {
cristy95a072b2011-10-13 18:03:11 +0000773 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
774 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000775 break;
776 }
777 }
cristy8a46d822012-08-28 23:32:39 +0000778 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000779 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
780 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000781 if (colorspace != GRAYColorspace)
782 {
cristyb51dff52011-05-19 16:55:47 +0000783 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000784 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
785 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000786 }
787 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
788 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000789 }
cristybd4a3c22014-01-07 15:09:37 +0000790 if (channel_moments != (ChannelMoments *) NULL)
791 {
cristycb9af4a2014-02-05 13:31:55 +0000792 scale=(double) ((1UL << image->depth)-1);
cristy89fc6f72014-01-07 15:38:21 +0000793 (void) FormatLocaleFile(file," Channel moments:\n");
cristybd4a3c22014-01-07 15:09:37 +0000794 switch (colorspace)
795 {
796 case RGBColorspace:
797 default:
798 {
cristycb9af4a2014-02-05 13:31:55 +0000799 (void) PrintChannelMoments(file,RedPixelChannel,"Red",scale,
cristybd4a3c22014-01-07 15:09:37 +0000800 channel_moments);
cristycb9af4a2014-02-05 13:31:55 +0000801 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",scale,
cristybd4a3c22014-01-07 15:09:37 +0000802 channel_moments);
cristycb9af4a2014-02-05 13:31:55 +0000803 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",scale,
cristybd4a3c22014-01-07 15:09:37 +0000804 channel_moments);
805 break;
806 }
807 case CMYKColorspace:
808 {
cristycb9af4a2014-02-05 13:31:55 +0000809 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",scale,
cristybd4a3c22014-01-07 15:09:37 +0000810 channel_moments);
cristycb9af4a2014-02-05 13:31:55 +0000811 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",scale,
cristybd4a3c22014-01-07 15:09:37 +0000812 channel_moments);
cristycb9af4a2014-02-05 13:31:55 +0000813 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",scale,
cristybd4a3c22014-01-07 15:09:37 +0000814 channel_moments);
cristycb9af4a2014-02-05 13:31:55 +0000815 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",scale,
cristybd4a3c22014-01-07 15:09:37 +0000816 channel_moments);
817 break;
818 }
819 case GRAYColorspace:
820 {
cristycb9af4a2014-02-05 13:31:55 +0000821 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",scale,
cristybd4a3c22014-01-07 15:09:37 +0000822 channel_moments);
823 break;
824 }
825 }
826 if (image->alpha_trait == BlendPixelTrait)
cristycb9af4a2014-02-05 13:31:55 +0000827 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",scale,
cristybd4a3c22014-01-07 15:09:37 +0000828 channel_moments);
cristy878fe612014-01-19 02:03:40 +0000829 if (colorspace != GRAYColorspace)
830 {
831 (void) FormatLocaleFile(file," Image moments:\n");
832 (void) PrintChannelMoments(file,(PixelChannel) MaxPixelChannels,
cristycb9af4a2014-02-05 13:31:55 +0000833 "Overall",scale,channel_moments);
cristy878fe612014-01-19 02:03:40 +0000834 }
cristybd4a3c22014-01-07 15:09:37 +0000835 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
836 channel_moments);
837 }
cristybd822072010-01-27 00:30:00 +0000838 if (channel_features != (ChannelFeatures *) NULL)
839 {
cristy1e604812011-05-19 18:07:50 +0000840 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
841 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000842 switch (colorspace)
843 {
844 case RGBColorspace:
845 default:
cristy549a37e2010-01-26 15:24:15 +0000846 {
cristy95a072b2011-10-13 18:03:11 +0000847 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000848 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000849 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
850 channel_features);
851 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
852 channel_features);
cristybd822072010-01-27 00:30:00 +0000853 break;
854 }
855 case CMYKColorspace:
856 {
cristy95a072b2011-10-13 18:03:11 +0000857 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000858 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000859 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000860 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000861 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
862 channel_features);
863 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000864 channel_features);
865 break;
866 }
867 case GRAYColorspace:
868 {
cristy95a072b2011-10-13 18:03:11 +0000869 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
870 channel_features);
cristybd822072010-01-27 00:30:00 +0000871 break;
872 }
873 }
cristy8a46d822012-08-28 23:32:39 +0000874 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000875 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
876 channel_features);
cristybd822072010-01-27 00:30:00 +0000877 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
878 channel_features);
879 }
880 if (ping == MagickFalse)
881 {
cristy3ed852e2009-09-05 21:47:34 +0000882 if (image->colorspace == CMYKColorspace)
cristyd0393a42014-01-19 15:11:45 +0000883 (void) FormatLocaleFile(file," Total ink density: %*g%%\n",
884 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
885 (double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000886 x=0;
cristy8a46d822012-08-28 23:32:39 +0000887 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000888 {
cristy4c08aed2011-07-01 19:47:50 +0000889 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000890 *p;
891
cristy4c08aed2011-07-01 19:47:50 +0000892 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000893 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000894 {
895 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000896 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000897 break;
cristybb503372010-05-27 20:51:26 +0000898 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000899 {
cristy4c08aed2011-07-01 19:47:50 +0000900 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000901 break;
cristyed231572011-07-14 02:18:59 +0000902 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000903 }
cristybb503372010-05-27 20:51:26 +0000904 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000905 break;
906 }
cristybb503372010-05-27 20:51:26 +0000907 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000908 {
909 char
910 tuple[MaxTextExtent];
911
cristy4c08aed2011-07-01 19:47:50 +0000912 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000913 pixel;
914
cristy4c08aed2011-07-01 19:47:50 +0000915 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000916 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000917 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000918 exception);
cristyb51dff52011-05-19 16:55:47 +0000919 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000920 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000921 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000922 }
923 }
cristya4037272011-08-28 15:11:39 +0000924 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000925 {
cristy4c967562011-06-16 01:46:57 +0000926 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000927 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000928 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000929 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000930 }
cristye64d6372012-12-07 18:56:48 +0000931 else
932 {
anthony6f201312012-03-30 04:08:15 +0000933 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000934 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000935 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
936 GetNumberColors(image,(FILE *) NULL,exception));
937 }
cristy3ed852e2009-09-05 21:47:34 +0000938 }
939 if (image->storage_class == PseudoClass)
940 {
cristy404558c2012-12-07 19:14:39 +0000941 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
942 image->colors);
cristye64d6372012-12-07 18:56:48 +0000943 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000944 if (image->colors <= 1024)
945 {
946 char
947 color[MaxTextExtent],
948 hex[MaxTextExtent],
949 tuple[MaxTextExtent];
950
cristy4c08aed2011-07-01 19:47:50 +0000951 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000952 pixel;
953
cristy101ab702011-10-13 13:06:32 +0000954 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000955 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000956
cristy4c08aed2011-07-01 19:47:50 +0000957 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000958 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000959 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000960 {
cristy9d8c8ce2011-10-25 16:13:52 +0000961 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000962 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000963 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000964 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000965 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000966 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000967 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000968 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000969 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000970 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000971 if (pixel.colorspace == CMYKColorspace)
972 {
973 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000974 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000975 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000976 }
cristy8a46d822012-08-28 23:32:39 +0000977 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000978 {
979 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000980 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000981 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000982 }
983 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000984 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000985 exception);
cristy3ed852e2009-09-05 21:47:34 +0000986 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000987 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
988 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000989 p++;
990 }
991 }
992 }
993 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000994 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000995 image->error.mean_error_per_pixel);
996 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000997 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000998 image->error.normalized_mean_error);
999 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001000 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +00001001 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +00001002 (void) FormatLocaleFile(file," Rendering intent: %s\n",
1003 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1004 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +00001005 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +00001006 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +00001007 if ((image->chromaticity.red_primary.x != 0.0) ||
1008 (image->chromaticity.green_primary.x != 0.0) ||
1009 (image->chromaticity.blue_primary.x != 0.0) ||
1010 (image->chromaticity.white_point.x != 0.0))
1011 {
1012 /*
1013 Display image chromaticity.
1014 */
cristyb51dff52011-05-19 16:55:47 +00001015 (void) FormatLocaleFile(file," Chromaticity:\n");
1016 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001017 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001018 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001019 image->chromaticity.green_primary.x,
1020 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001021 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001022 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +00001023 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +00001024 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
1025 }
1026 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +00001027 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
1028 (double) image->extract_info.width,(double) image->extract_info.height,
1029 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +00001030 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001031 exception);
cristyb51dff52011-05-19 16:55:47 +00001032 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001033 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001034 exception);
cristyb51dff52011-05-19 16:55:47 +00001035 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001036 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001037 exception);
cristyb51dff52011-05-19 16:55:47 +00001038 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +00001039 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +00001040 exception);
cristyb51dff52011-05-19 16:55:47 +00001041 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +00001042 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
1043 MagickInterlaceOptions,(ssize_t) image->interlace));
1044 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
1045 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +00001046 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001047 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +00001048 if ((image->page.width != 0) || (image->page.height != 0) ||
1049 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +00001050 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
1051 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +00001052 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +00001053 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +00001054 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +00001055 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +00001056 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001057 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +00001058 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +00001059 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +00001060 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +00001061 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +00001062 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
1063 image->iterations);
glennrpb844bd52014-01-25 16:59:43 +00001064 if (image->duration != 0)
1065 (void) FormatLocaleFile(file," Duration: %.20g\n",(double)
1066 image->duration);
cristy3ed852e2009-09-05 21:47:34 +00001067 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +00001068 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
1069 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +00001070 else
1071 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +00001072 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
1073 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001074 MagickCompressOptions,(ssize_t) image->compression));
cristy07f628a2013-08-20 11:43:55 +00001075 if (image->quality != UndefinedCompressionQuality)
cristy92beec62013-08-26 12:23:46 +00001076 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +00001077 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
1078 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +00001079 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001080 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +00001081 if (image->directory != (char *) NULL)
1082 {
1083 Image
1084 *tile;
1085
1086 ImageInfo
1087 *image_info;
1088
1089 register char
1090 *p,
1091 *q;
1092
1093 WarningHandler
1094 handler;
1095
1096 /*
1097 Display visual image directory.
1098 */
1099 image_info=AcquireImageInfo();
1100 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +00001101 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +00001102 for (p=image->directory; *p != '\0'; p++)
1103 {
1104 q=p;
1105 while ((*q != '\n') && (*q != '\0'))
1106 q++;
1107 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
1108 p=q;
cristyb51dff52011-05-19 16:55:47 +00001109 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +00001110 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +00001111 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +00001112 (void) SetWarningHandler(handler);
1113 if (tile == (Image *) NULL)
1114 {
cristyb51dff52011-05-19 16:55:47 +00001115 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +00001116 continue;
1117 }
cristy1e604812011-05-19 18:07:50 +00001118 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1119 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +00001120 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001121 ResetImagePropertyIterator(tile);
1122 property=GetNextImageProperty(tile);
1123 while (property != (const char *) NULL)
1124 {
cristyb51dff52011-05-19 16:55:47 +00001125 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +00001126 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001127 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001128 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001129 property=GetNextImageProperty(tile);
1130 }
1131 tile=DestroyImage(tile);
1132 }
1133 image_info=DestroyImageInfo(image_info);
1134 }
cristyd15e6592011-10-15 00:13:06 +00001135 (void) GetImageProperty(image,"exif:*",exception);
cristy55166322014-01-23 01:53:24 +00001136 (void) GetImageProperty(image,"icc:*",exception);
1137 (void) GetImageProperty(image,"iptc:*",exception);
1138 (void) GetImageProperty(image,"xmp:*",exception);
cristy3ed852e2009-09-05 21:47:34 +00001139 ResetImagePropertyIterator(image);
1140 property=GetNextImageProperty(image);
1141 if (property != (const char *) NULL)
1142 {
1143 /*
1144 Display image properties.
1145 */
cristyb51dff52011-05-19 16:55:47 +00001146 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +00001147 while (property != (const char *) NULL)
1148 {
cristyb51dff52011-05-19 16:55:47 +00001149 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +00001150 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +00001151 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001152 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001153 property=GetNextImageProperty(image);
1154 }
1155 }
cristyb51dff52011-05-19 16:55:47 +00001156 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +00001157 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +00001158 if (value != (const char *) NULL)
1159 {
1160 /*
1161 Display clipping path.
1162 */
cristyb51dff52011-05-19 16:55:47 +00001163 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +00001164 if (strlen(value) > 80)
1165 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +00001166 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001167 }
1168 ResetImageProfileIterator(image);
1169 name=GetNextImageProfile(image);
1170 if (name != (char *) NULL)
1171 {
1172 const StringInfo
1173 *profile;
1174
1175 /*
1176 Identify image profiles.
1177 */
cristyb51dff52011-05-19 16:55:47 +00001178 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +00001179 while (name != (char *) NULL)
1180 {
1181 profile=GetImageProfile(image,name);
1182 if (profile == (StringInfo *) NULL)
1183 continue;
cristy1e604812011-05-19 18:07:50 +00001184 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1185 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001186 if (LocaleCompare(name,"iptc") == 0)
1187 {
1188 char
1189 *attribute,
1190 **attribute_list;
1191
1192 const char
1193 *tag;
1194
cristycee97112010-05-28 00:44:52 +00001195 long
cristy3ed852e2009-09-05 21:47:34 +00001196 dataset,
1197 record,
1198 sentinel;
1199
cristybb503372010-05-27 20:51:26 +00001200 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001201 j;
1202
1203 size_t
1204 length,
1205 profile_length;
1206
1207 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +00001208 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +00001209 {
1210 length=1;
1211 sentinel=GetStringInfoDatum(profile)[i++];
1212 if (sentinel != 0x1c)
1213 continue;
1214 dataset=GetStringInfoDatum(profile)[i++];
1215 record=GetStringInfoDatum(profile)[i++];
1216 switch (record)
1217 {
1218 case 5: tag="Image Name"; break;
1219 case 7: tag="Edit Status"; break;
1220 case 10: tag="Priority"; break;
1221 case 15: tag="Category"; break;
1222 case 20: tag="Supplemental Category"; break;
1223 case 22: tag="Fixture Identifier"; break;
1224 case 25: tag="Keyword"; break;
1225 case 30: tag="Release Date"; break;
1226 case 35: tag="Release Time"; break;
1227 case 40: tag="Special Instructions"; break;
1228 case 45: tag="Reference Service"; break;
1229 case 47: tag="Reference Date"; break;
1230 case 50: tag="Reference Number"; break;
1231 case 55: tag="Created Date"; break;
1232 case 60: tag="Created Time"; break;
1233 case 65: tag="Originating Program"; break;
1234 case 70: tag="Program Version"; break;
1235 case 75: tag="Object Cycle"; break;
1236 case 80: tag="Byline"; break;
1237 case 85: tag="Byline Title"; break;
1238 case 90: tag="City"; break;
1239 case 95: tag="Province State"; break;
1240 case 100: tag="Country Code"; break;
1241 case 101: tag="Country"; break;
1242 case 103: tag="Original Transmission Reference"; break;
1243 case 105: tag="Headline"; break;
1244 case 110: tag="Credit"; break;
1245 case 115: tag="Src"; break;
1246 case 116: tag="Copyright String"; break;
1247 case 120: tag="Caption"; break;
1248 case 121: tag="Local Caption"; break;
1249 case 122: tag="Caption Writer"; break;
1250 case 200: tag="Custom Field 1"; break;
1251 case 201: tag="Custom Field 2"; break;
1252 case 202: tag="Custom Field 3"; break;
1253 case 203: tag="Custom Field 4"; break;
1254 case 204: tag="Custom Field 5"; break;
1255 case 205: tag="Custom Field 6"; break;
1256 case 206: tag="Custom Field 7"; break;
1257 case 207: tag="Custom Field 8"; break;
1258 case 208: tag="Custom Field 9"; break;
1259 case 209: tag="Custom Field 10"; break;
1260 case 210: tag="Custom Field 11"; break;
1261 case 211: tag="Custom Field 12"; break;
1262 case 212: tag="Custom Field 13"; break;
1263 case 213: tag="Custom Field 14"; break;
1264 case 214: tag="Custom Field 15"; break;
1265 case 215: tag="Custom Field 16"; break;
1266 case 216: tag="Custom Field 17"; break;
1267 case 217: tag="Custom Field 18"; break;
1268 case 218: tag="Custom Field 19"; break;
1269 case 219: tag="Custom Field 20"; break;
1270 default: tag="unknown"; break;
1271 }
cristy1e604812011-05-19 18:07:50 +00001272 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1273 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001274 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1275 length|=GetStringInfoDatum(profile)[i++];
1276 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001277 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001278 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1279 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001280 if (attribute != (char *) NULL)
1281 {
1282 (void) CopyMagickString(attribute,(char *)
1283 GetStringInfoDatum(profile)+i,length+1);
1284 attribute_list=StringToList(attribute);
1285 if (attribute_list != (char **) NULL)
1286 {
1287 for (j=0; attribute_list[j] != (char *) NULL; j++)
1288 {
1289 (void) fputs(attribute_list[j],file);
1290 (void) fputs("\n",file);
1291 attribute_list[j]=(char *) RelinquishMagickMemory(
1292 attribute_list[j]);
1293 }
1294 attribute_list=(char **) RelinquishMagickMemory(
1295 attribute_list);
1296 }
1297 attribute=DestroyString(attribute);
1298 }
1299 }
1300 }
1301 if (image->debug != MagickFalse)
1302 PrintStringInfo(file,name,profile);
1303 name=GetNextImageProfile(image);
1304 }
1305 }
1306 ResetImageArtifactIterator(image);
1307 artifact=GetNextImageArtifact(image);
1308 if (artifact != (const char *) NULL)
1309 {
1310 /*
1311 Display image artifacts.
1312 */
cristyb51dff52011-05-19 16:55:47 +00001313 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001314 while (artifact != (const char *) NULL)
1315 {
cristyb51dff52011-05-19 16:55:47 +00001316 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001317 value=GetImageArtifact(image,artifact);
1318 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001319 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001320 artifact=GetNextImageArtifact(image);
1321 }
1322 }
1323 ResetImageRegistryIterator();
1324 registry=GetNextImageRegistry();
1325 if (registry != (const char *) NULL)
1326 {
1327 /*
1328 Display image registry.
1329 */
cristyb51dff52011-05-19 16:55:47 +00001330 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001331 while (registry != (const char *) NULL)
1332 {
cristyb51dff52011-05-19 16:55:47 +00001333 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001334 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001335 exception);
cristy3ed852e2009-09-05 21:47:34 +00001336 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001337 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001338 registry=GetNextImageRegistry();
1339 }
1340 }
cristyb51dff52011-05-19 16:55:47 +00001341 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001342 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001343 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001344 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001345 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001346 MagickFalse,format);
1347 if (strlen(format) > 1)
1348 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001349 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001350 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001351 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001352 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1353 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001354 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001355 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1356 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001357 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001358 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001359 (void) fflush(file);
1360 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1361}