blob: 4db16ec142c1fadd10cf756de65b5a9fdee3522e [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% IIIII DDDD EEEEE N N TTTTT IIIII FFFFF Y Y %
7% I D D E NN N T I F Y Y %
8% I D D EEE N N N T I FFF Y %
9% I D D E N NN T I F Y %
10% IIIII DDDD EEEEE N N T IIIII F Y %
11% %
12% %
13% Identify an Image Format and Characteristics. %
14% %
15% Software Design %
16% John Cristy %
17% September 1994 %
18% %
19% %
cristy1a780952013-02-10 17:15:30 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36% Identify describes the format and characteristics of one or more image
37% files. It will also report if an image is incomplete or corrupt.
38%
39%
40*/
41
42/*
43 Include declarations.
44*/
cristy4c08aed2011-07-01 19:47:50 +000045#include "MagickCore/studio.h"
46#include "MagickCore/annotate.h"
47#include "MagickCore/artifact.h"
48#include "MagickCore/attribute.h"
49#include "MagickCore/blob.h"
50#include "MagickCore/cache.h"
51#include "MagickCore/client.h"
52#include "MagickCore/coder.h"
53#include "MagickCore/color.h"
54#include "MagickCore/configure.h"
55#include "MagickCore/constitute.h"
56#include "MagickCore/decorate.h"
57#include "MagickCore/delegate.h"
58#include "MagickCore/draw.h"
59#include "MagickCore/effect.h"
60#include "MagickCore/exception.h"
61#include "MagickCore/exception-private.h"
62#include "MagickCore/feature.h"
63#include "MagickCore/gem.h"
64#include "MagickCore/geometry.h"
65#include "MagickCore/histogram.h"
66#include "MagickCore/identify.h"
67#include "MagickCore/image.h"
68#include "MagickCore/image-private.h"
69#include "MagickCore/list.h"
70#include "MagickCore/locale_.h"
71#include "MagickCore/log.h"
72#include "MagickCore/magic.h"
73#include "MagickCore/magick.h"
74#include "MagickCore/memory_.h"
75#include "MagickCore/module.h"
76#include "MagickCore/monitor.h"
77#include "MagickCore/montage.h"
78#include "MagickCore/option.h"
79#include "MagickCore/pixel-accessor.h"
80#include "MagickCore/prepress.h"
81#include "MagickCore/profile.h"
82#include "MagickCore/property.h"
83#include "MagickCore/quantize.h"
84#include "MagickCore/quantum.h"
85#include "MagickCore/random_.h"
86#include "MagickCore/registry.h"
87#include "MagickCore/resize.h"
88#include "MagickCore/resource_.h"
89#include "MagickCore/signature.h"
90#include "MagickCore/statistic.h"
91#include "MagickCore/string_.h"
92#include "MagickCore/string-private.h"
93#include "MagickCore/timer.h"
cristy63a81872012-03-22 15:52:52 +000094#include "MagickCore/token.h"
cristy4c08aed2011-07-01 19:47:50 +000095#include "MagickCore/utility.h"
cristyd1dd6e42011-09-04 01:46:08 +000096#include "MagickCore/utility-private.h"
cristy4c08aed2011-07-01 19:47:50 +000097#include "MagickCore/version.h"
cristy3ed852e2009-09-05 21:47:34 +000098#if defined(MAGICKCORE_LCMS_DELEGATE)
cristyd09bcf92010-03-25 03:04:45 +000099#if defined(MAGICKCORE_HAVE_LCMS_LCMS2_H)
100#include <lcms/lcms2.h>
101#elif defined(MAGICKCORE_HAVE_LCMS2_H)
102#include "lcms2.h"
103#elif defined(MAGICKCORE_HAVE_LCMS_LCMS_H)
cristy3ed852e2009-09-05 21:47:34 +0000104#include <lcms/lcms.h>
105#else
106#include "lcms.h"
107#endif
108#endif
109
110/*
cristyd09bcf92010-03-25 03:04:45 +0000111 Define declarations.
112*/
113#if defined(MAGICKCORE_LCMS_DELEGATE)
114#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
115#define cmsUInt32Number DWORD
116#endif
117#endif
118
119/*
cristy3ed852e2009-09-05 21:47:34 +0000120%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
121% %
122% %
123% %
124% I d e n t i f y I m a g e %
125% %
126% %
127% %
128%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
129%
130% IdentifyImage() identifies an image by printing its attributes to the file.
131% Attributes include the image width, height, size, and others.
132%
133% The format of the IdentifyImage method is:
134%
135% MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000136% const MagickBooleanType verbose,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000137%
138% A description of each parameter follows:
139%
140% o image: the image.
141%
142% o file: the file, typically stdout.
143%
144% o verbose: A value other than zero prints more detailed information
145% about the image.
146%
cristya4037272011-08-28 15:11:39 +0000147% o exception: return any errors or warnings in this structure.
148%
cristy3ed852e2009-09-05 21:47:34 +0000149*/
150
cristy95a072b2011-10-13 18:03:11 +0000151static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
cristye1897792010-01-29 02:05:50 +0000152 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000153{
cristye1897792010-01-29 02:05:50 +0000154#define PrintFeature(feature) \
155 GetMagickPrecision(),(feature)[0], \
156 GetMagickPrecision(),(feature)[1], \
157 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000158 GetMagickPrecision(),(feature)[3], \
159 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000160
cristybd822072010-01-27 00:30:00 +0000161#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000162 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000163 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000164 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000165 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000166 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000167 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000168 " Sum of Squares: Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000169 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000170 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000171 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000172 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000173 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000174 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000175 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000176 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000177 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000178 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000179 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000180 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000181 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000182 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000183 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000184 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000185 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000186 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000187 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000188 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000189 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000190
cristy20ec7592011-05-29 01:28:05 +0000191 ssize_t
192 n;
cristybd822072010-01-27 00:30:00 +0000193
cristy20ec7592011-05-29 01:28:05 +0000194 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000195 PrintFeature(channel_features[channel].angular_second_moment),
196 PrintFeature(channel_features[channel].contrast),
197 PrintFeature(channel_features[channel].correlation),
198 PrintFeature(channel_features[channel].variance_sum_of_squares),
199 PrintFeature(channel_features[channel].inverse_difference_moment),
200 PrintFeature(channel_features[channel].sum_average),
201 PrintFeature(channel_features[channel].sum_variance),
202 PrintFeature(channel_features[channel].sum_entropy),
203 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000204 PrintFeature(channel_features[channel].difference_variance),
205 PrintFeature(channel_features[channel].difference_entropy),
206 PrintFeature(channel_features[channel].measure_of_correlation_1),
207 PrintFeature(channel_features[channel].measure_of_correlation_2),
208 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000209 return(n);
cristybd822072010-01-27 00:30:00 +0000210}
211
cristy7d8529e2013-09-01 17:03:36 +0000212static ssize_t PrintChannelLocations(FILE *file,const Image *image,
213 const PixelChannel channel,const char *name,const StatisticType type,
214 const size_t max_locations,const ChannelStatistics *channel_statistics)
215{
216 double
217 target;
218
219 ExceptionInfo
220 *exception;
221
222 ssize_t
223 n,
224 y;
225
cristy7d8529e2013-09-01 17:03:36 +0000226 switch (type)
227 {
228 case MaximumStatistic:
229 default:
230 {
231 target=channel_statistics[channel].maxima;
232 break;
233 }
234 case MeanStatistic:
235 {
236 target=channel_statistics[channel].mean;
237 break;
238 }
239 case MinimumStatistic:
240 {
241 target=channel_statistics[channel].minima;
242 break;
243 }
244 }
cristycffbc332013-09-01 18:25:19 +0000245 (void) FormatLocaleFile(file," %s: %.20g (%.20g)",name,target,QuantumScale*
246 target);
cristy7d8529e2013-09-01 17:03:36 +0000247 exception=AcquireExceptionInfo();
248 n=0;
249 for (y=0; y < (ssize_t) image->rows; y++)
250 {
251 register const Quantum
252 *p;
253
254 ssize_t
255 x;
256
257 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
258 if (p == (const Quantum *) NULL)
259 break;
260 for (x=0; x < (ssize_t) image->columns; x++)
261 {
262 MagickBooleanType
263 match;
264
265 PixelTrait traits=GetPixelChannelTraits(image,channel);
266 if (traits == UndefinedPixelTrait)
267 continue;
268 match=fabs((double) p[channel]-target) < 0.5 ? MagickTrue : MagickFalse;
269 if (match != MagickFalse)
270 {
271 if ((max_locations != 0) && (n >= max_locations))
272 break;
273 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
274 n++;
275 }
276 p++;
277 }
278 if (x < (ssize_t) image->columns)
279 break;
280 }
281 (void) FormatLocaleFile(file,"\n");
282 return(n);
283}
284
cristy95a072b2011-10-13 18:03:11 +0000285static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000286 const char *name,const double scale,
287 const ChannelStatistics *channel_statistics)
288{
289#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000290 " (%g)\n max: " QuantumFormat " (%g)\n" \
291 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
292 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000293
cristy20ec7592011-05-29 01:28:05 +0000294 ssize_t
295 n;
cristybd822072010-01-27 00:30:00 +0000296
cristy20ec7592011-05-29 01:28:05 +0000297 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000298 channel_statistics[channel].minima),channel_statistics[channel].minima/
299 (double) QuantumRange,ClampToQuantum(scale*
300 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
301 (double) QuantumRange,scale*channel_statistics[channel].mean,
302 channel_statistics[channel].mean/(double) QuantumRange,scale*
303 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000304 channel_statistics[channel].standard_deviation/(double) QuantumRange,
305 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000306 return(n);
cristybd822072010-01-27 00:30:00 +0000307}
308
309MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000310 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000311{
cristy3ed852e2009-09-05 21:47:34 +0000312 char
313 color[MaxTextExtent],
314 format[MaxTextExtent],
315 key[MaxTextExtent];
316
cristybd822072010-01-27 00:30:00 +0000317 ChannelFeatures
318 *channel_features;
319
320 ChannelStatistics
321 *channel_statistics;
322
cristy3ed852e2009-09-05 21:47:34 +0000323 ColorspaceType
324 colorspace;
325
326 const char
327 *artifact,
cristy7d8529e2013-09-01 17:03:36 +0000328 *locate,
cristy3ed852e2009-09-05 21:47:34 +0000329 *name,
330 *property,
331 *registry,
332 *value;
333
334 const MagickInfo
335 *magick_info;
336
cristy3ed852e2009-09-05 21:47:34 +0000337 double
338 elapsed_time,
339 user_time;
340
cristy3ed852e2009-09-05 21:47:34 +0000341 ImageType
342 type;
343
cristy3ed852e2009-09-05 21:47:34 +0000344 MagickBooleanType
345 ping;
346
cristy4c08aed2011-07-01 19:47:50 +0000347 register const Quantum
348 *p;
349
cristybb503372010-05-27 20:51:26 +0000350 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000351 i,
352 x;
353
cristybb503372010-05-27 20:51:26 +0000354 size_t
cristybd822072010-01-27 00:30:00 +0000355 distance,
cristy3ed852e2009-09-05 21:47:34 +0000356 scale;
357
cristy9d314ff2011-03-09 01:30:28 +0000358 ssize_t
359 y;
360
cristy3ed852e2009-09-05 21:47:34 +0000361 assert(image != (Image *) NULL);
362 assert(image->signature == MagickSignature);
363 if (image->debug != MagickFalse)
364 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
365 if (file == (FILE *) NULL)
366 file=stdout;
cristy7d8529e2013-09-01 17:03:36 +0000367 locate=GetImageArtifact(image,"identify:locate");
368 if (locate != (const char *) NULL)
369 {
370 const char
371 *limit;
372
373 size_t
374 max_locations;
375
376 StatisticType
377 statistic;
378
379 /*
380 Display minimum, maximum, or mean pixel locations.
381 */
382 statistic=(StatisticType) ParseCommandOption(MagickStatisticOptions,
383 MagickFalse,locate);
384 limit=GetImageArtifact(image,"identify:limit");
385 max_locations=0;
386 if (limit != (const char *) NULL)
387 max_locations=StringToUnsignedLong(limit);
388 channel_statistics=GetImageStatistics(image,exception);
389 colorspace=image->colorspace;
390 if (IsImageGray(image,exception) != MagickFalse)
391 colorspace=GRAYColorspace;
392 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
393 switch (colorspace)
394 {
395 case RGBColorspace:
396 default:
397 {
cristycffbc332013-09-01 18:25:19 +0000398 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
cristy7d8529e2013-09-01 17:03:36 +0000399 statistic,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000400 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
cristy7d8529e2013-09-01 17:03:36 +0000401 statistic,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000402 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
cristy7d8529e2013-09-01 17:03:36 +0000403 statistic,max_locations,channel_statistics);
404 break;
405 }
406 case CMYKColorspace:
407 {
cristycffbc332013-09-01 18:25:19 +0000408 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
cristy7d8529e2013-09-01 17:03:36 +0000409 statistic,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000410 (void) PrintChannelLocations(file,image,MagentaPixelChannel,"Magenta",
cristy7d8529e2013-09-01 17:03:36 +0000411 statistic,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000412 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
cristy7d8529e2013-09-01 17:03:36 +0000413 statistic,max_locations,channel_statistics);
cristycffbc332013-09-01 18:25:19 +0000414 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
cristy7d8529e2013-09-01 17:03:36 +0000415 statistic,max_locations,channel_statistics);
416 break;
417 }
418 case GRAYColorspace:
419 {
cristycffbc332013-09-01 18:25:19 +0000420 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
cristy7d8529e2013-09-01 17:03:36 +0000421 statistic,max_locations,channel_statistics);
422 break;
423 }
424 }
425 if (image->alpha_trait == BlendPixelTrait)
cristycffbc332013-09-01 18:25:19 +0000426 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
cristy7d8529e2013-09-01 17:03:36 +0000427 statistic,max_locations,channel_statistics);
428 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
429 channel_statistics);
430 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
431 }
cristy3ed852e2009-09-05 21:47:34 +0000432 *format='\0';
433 elapsed_time=GetElapsedTime(&image->timer);
434 user_time=GetUserTime(&image->timer);
435 GetTimerInfo(&image->timer);
436 if (verbose == MagickFalse)
437 {
438 /*
439 Display summary info about the image.
440 */
441 if (*image->magick_filename != '\0')
442 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000443 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000444 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000445 (GetNextImageInList(image) == (Image *) NULL) &&
446 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000447 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000448 else
cristy1e604812011-05-19 18:07:50 +0000449 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
450 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000451 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000452 if ((image->magick_columns != 0) || (image->magick_rows != 0))
453 if ((image->magick_columns != image->columns) ||
454 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000455 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
456 image->magick_columns,(double) image->magick_rows);
457 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
458 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000459 if ((image->page.width != 0) || (image->page.height != 0) ||
460 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000461 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000462 image->page.width,(double) image->page.height,(double) image->page.x,
463 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000464 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000465 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000466 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
467 MagickTypeOptions,(ssize_t) image->type));
cristy479d4622012-08-22 13:03:27 +0000468 if (image->colorspace != UndefinedColorspace)
469 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
470 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000471 if (image->storage_class == DirectClass)
472 {
cristy3ed852e2009-09-05 21:47:34 +0000473 if (image->total_colors != 0)
474 {
cristyb9080c92009-12-01 20:13:26 +0000475 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000476 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000477 }
478 }
479 else
480 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000481 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000482 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000483 else
cristy479d4622012-08-22 13:03:27 +0000484 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000485 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000486 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000487 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000488 (image->error.mean_error_per_pixel+0.5),
489 image->error.normalized_mean_error,
490 image->error.normalized_maximum_error);
491 if (GetBlobSize(image) != 0)
492 {
cristyb9080c92009-12-01 20:13:26 +0000493 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000494 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000495 }
cristy1e604812011-05-19 18:07:50 +0000496 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
497 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
498 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
499 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000500 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000501 (void) fflush(file);
502 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
503 }
504 /*
505 Display verbose info about the image.
506 */
cristy4c08aed2011-07-01 19:47:50 +0000507 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000508 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000509 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000510 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000511 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000512 if (*image->magick_filename != '\0')
513 if (LocaleCompare(image->magick_filename,image->filename) != 0)
514 {
515 char
516 filename[MaxTextExtent];
517
518 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000519 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000520 }
cristya4037272011-08-28 15:11:39 +0000521 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000522 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000523 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000524 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000525 else
cristyb51dff52011-05-19 16:55:47 +0000526 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000527 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000528 if ((magick_info == (const MagickInfo *) NULL) ||
529 (GetMagickMimeType(magick_info) != (const char *) NULL))
530 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
dirk55584952013-08-09 18:54:28 +0000531 magick_info));
cristy1e604812011-05-19 18:07:50 +0000532 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
533 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000534 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000535 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
536 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000537 if ((image->magick_columns != 0) || (image->magick_rows != 0))
538 if ((image->magick_columns != image->columns) ||
539 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000540 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000541 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000542 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000543 {
cristy2a11bef2011-10-28 18:33:11 +0000544 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
545 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000546 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000547 image->columns/image->resolution.x,(double) image->rows/
548 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000549 }
cristyb51dff52011-05-19 16:55:47 +0000550 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000551 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000552 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
553 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000554 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000555 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000556 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000557 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000558 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000559 /*
560 Detail channel depth and extrema.
561 */
cristyb51dff52011-05-19 16:55:47 +0000562 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000563 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000564 channel_statistics=(ChannelStatistics *) NULL;
cristy15a88782010-01-31 23:24:49 +0000565 channel_features=(ChannelFeatures *) NULL;
566 colorspace=image->colorspace;
cristy564a5692012-01-20 23:56:26 +0000567 scale=1;
cristy3ed852e2009-09-05 21:47:34 +0000568 if (ping == MagickFalse)
569 {
cristybb503372010-05-27 20:51:26 +0000570 size_t
cristy3ed852e2009-09-05 21:47:34 +0000571 depth;
572
cristya4037272011-08-28 15:11:39 +0000573 channel_statistics=GetImageStatistics(image,exception);
cristy15a88782010-01-31 23:24:49 +0000574 artifact=GetImageArtifact(image,"identify:features");
575 if (artifact != (const char *) NULL)
576 {
577 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000578 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000579 }
cristya4037272011-08-28 15:11:39 +0000580 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000581 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000582 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
583 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000584 else
cristyb51dff52011-05-19 16:55:47 +0000585 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000586 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000587 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000588 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000589 colorspace=GRAYColorspace;
590 switch (colorspace)
591 {
592 case RGBColorspace:
593 default:
594 {
cristycffbc332013-09-01 18:25:19 +0000595 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000596 channel_statistics[RedPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000597 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000598 channel_statistics[GreenPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000599 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000600 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000601 break;
602 }
603 case CMYKColorspace:
604 {
cristycffbc332013-09-01 18:25:19 +0000605 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000606 channel_statistics[CyanPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000607 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000608 channel_statistics[MagentaPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000609 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000610 channel_statistics[YellowPixelChannel].depth);
cristycffbc332013-09-01 18:25:19 +0000611 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000612 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000613 break;
614 }
615 case GRAYColorspace:
616 {
cristycffbc332013-09-01 18:25:19 +0000617 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000618 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000619 break;
620 }
621 }
cristy8a46d822012-08-28 23:32:39 +0000622 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000623 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000624 channel_statistics[AlphaPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000625 scale=1;
626 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000627 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000628 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000629 }
630 if (channel_statistics != (ChannelStatistics *) NULL)
631 {
cristyb51dff52011-05-19 16:55:47 +0000632 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000633 (void) FormatLocaleFile(file," Pixels: %.20g\n",
634 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000635 switch (colorspace)
636 {
637 case RGBColorspace:
638 default:
639 {
cristy95a072b2011-10-13 18:03:11 +0000640 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
641 scale,channel_statistics);
642 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
643 scale,channel_statistics);
644 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
645 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000646 break;
647 }
648 case CMYKColorspace:
649 {
cristy95a072b2011-10-13 18:03:11 +0000650 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
651 scale,channel_statistics);
652 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
653 scale,channel_statistics);
654 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
655 scale,channel_statistics);
656 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
657 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000658 break;
659 }
660 case GRAYColorspace:
661 {
cristy95a072b2011-10-13 18:03:11 +0000662 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
663 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000664 break;
665 }
666 }
cristy8a46d822012-08-28 23:32:39 +0000667 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000668 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
669 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000670 if (colorspace != GRAYColorspace)
671 {
cristyb51dff52011-05-19 16:55:47 +0000672 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000673 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
674 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000675 }
676 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
677 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000678 }
cristybd822072010-01-27 00:30:00 +0000679 if (channel_features != (ChannelFeatures *) NULL)
680 {
cristy1e604812011-05-19 18:07:50 +0000681 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
682 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000683 switch (colorspace)
684 {
685 case RGBColorspace:
686 default:
cristy549a37e2010-01-26 15:24:15 +0000687 {
cristy95a072b2011-10-13 18:03:11 +0000688 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000689 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000690 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
691 channel_features);
692 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
693 channel_features);
cristybd822072010-01-27 00:30:00 +0000694 break;
695 }
696 case CMYKColorspace:
697 {
cristy95a072b2011-10-13 18:03:11 +0000698 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000699 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000700 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000701 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000702 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
703 channel_features);
704 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000705 channel_features);
706 break;
707 }
708 case GRAYColorspace:
709 {
cristy95a072b2011-10-13 18:03:11 +0000710 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
711 channel_features);
cristybd822072010-01-27 00:30:00 +0000712 break;
713 }
714 }
cristy8a46d822012-08-28 23:32:39 +0000715 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000716 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
717 channel_features);
cristybd822072010-01-27 00:30:00 +0000718 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
719 channel_features);
720 }
721 if (ping == MagickFalse)
722 {
cristy3ed852e2009-09-05 21:47:34 +0000723 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000724 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy7c3af952011-10-20 16:04:16 +0000725 GetImageTotalInkDensity(image,exception)/(double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000726 x=0;
cristy8a46d822012-08-28 23:32:39 +0000727 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000728 {
cristy4c08aed2011-07-01 19:47:50 +0000729 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000730 *p;
731
cristy4c08aed2011-07-01 19:47:50 +0000732 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000733 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000734 {
735 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000736 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000737 break;
cristybb503372010-05-27 20:51:26 +0000738 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000739 {
cristy4c08aed2011-07-01 19:47:50 +0000740 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000741 break;
cristyed231572011-07-14 02:18:59 +0000742 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000743 }
cristybb503372010-05-27 20:51:26 +0000744 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000745 break;
746 }
cristybb503372010-05-27 20:51:26 +0000747 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000748 {
749 char
750 tuple[MaxTextExtent];
751
cristy4c08aed2011-07-01 19:47:50 +0000752 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000753 pixel;
754
cristy4c08aed2011-07-01 19:47:50 +0000755 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000756 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000757 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000758 exception);
cristyb51dff52011-05-19 16:55:47 +0000759 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000760 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000761 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000762 }
763 }
cristya4037272011-08-28 15:11:39 +0000764 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000765 {
cristy4c967562011-06-16 01:46:57 +0000766 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000767 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000768 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000769 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000770 }
cristye64d6372012-12-07 18:56:48 +0000771 else
772 {
anthony6f201312012-03-30 04:08:15 +0000773 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000774 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000775 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
776 GetNumberColors(image,(FILE *) NULL,exception));
777 }
cristy3ed852e2009-09-05 21:47:34 +0000778 }
779 if (image->storage_class == PseudoClass)
780 {
cristy404558c2012-12-07 19:14:39 +0000781 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
782 image->colors);
cristye64d6372012-12-07 18:56:48 +0000783 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000784 if (image->colors <= 1024)
785 {
786 char
787 color[MaxTextExtent],
788 hex[MaxTextExtent],
789 tuple[MaxTextExtent];
790
cristy4c08aed2011-07-01 19:47:50 +0000791 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000792 pixel;
793
cristy101ab702011-10-13 13:06:32 +0000794 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000795 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000796
cristy4c08aed2011-07-01 19:47:50 +0000797 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000798 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000799 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000800 {
cristy9d8c8ce2011-10-25 16:13:52 +0000801 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000802 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000803 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000804 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000805 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000806 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000807 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000808 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000809 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000810 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000811 if (pixel.colorspace == CMYKColorspace)
812 {
813 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000814 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000815 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000816 }
cristy8a46d822012-08-28 23:32:39 +0000817 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000818 {
819 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000820 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000821 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000822 }
823 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000824 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000825 exception);
cristy3ed852e2009-09-05 21:47:34 +0000826 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000827 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
828 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000829 p++;
830 }
831 }
832 }
833 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000834 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000835 image->error.mean_error_per_pixel);
836 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000837 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000838 image->error.normalized_mean_error);
839 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000840 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000841 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +0000842 (void) FormatLocaleFile(file," Rendering intent: %s\n",
843 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
844 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +0000845 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000846 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +0000847 if ((image->chromaticity.red_primary.x != 0.0) ||
848 (image->chromaticity.green_primary.x != 0.0) ||
849 (image->chromaticity.blue_primary.x != 0.0) ||
850 (image->chromaticity.white_point.x != 0.0))
851 {
852 /*
853 Display image chromaticity.
854 */
cristyb51dff52011-05-19 16:55:47 +0000855 (void) FormatLocaleFile(file," Chromaticity:\n");
856 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000857 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000858 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000859 image->chromaticity.green_primary.x,
860 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000861 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000862 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000863 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000864 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
865 }
866 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +0000867 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
868 (double) image->extract_info.width,(double) image->extract_info.height,
869 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +0000870 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000871 exception);
cristyb51dff52011-05-19 16:55:47 +0000872 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000873 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000874 exception);
cristyb51dff52011-05-19 16:55:47 +0000875 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000876 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000877 exception);
cristyb51dff52011-05-19 16:55:47 +0000878 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000879 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000880 exception);
cristyb51dff52011-05-19 16:55:47 +0000881 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +0000882 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
883 MagickInterlaceOptions,(ssize_t) image->interlace));
884 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
885 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +0000886 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000887 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +0000888 if ((image->page.width != 0) || (image->page.height != 0) ||
889 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +0000890 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
891 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +0000892 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000893 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000894 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000895 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000896 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000897 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +0000898 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +0000899 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +0000900 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +0000901 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +0000902 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
903 image->iterations);
cristy3ed852e2009-09-05 21:47:34 +0000904 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +0000905 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
906 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000907 else
908 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +0000909 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
910 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000911 MagickCompressOptions,(ssize_t) image->compression));
cristy07f628a2013-08-20 11:43:55 +0000912 if (image->quality != UndefinedCompressionQuality)
cristy92beec62013-08-26 12:23:46 +0000913 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +0000914 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
915 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +0000916 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000917 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +0000918 if (image->directory != (char *) NULL)
919 {
920 Image
921 *tile;
922
923 ImageInfo
924 *image_info;
925
926 register char
927 *p,
928 *q;
929
930 WarningHandler
931 handler;
932
933 /*
934 Display visual image directory.
935 */
936 image_info=AcquireImageInfo();
937 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +0000938 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +0000939 for (p=image->directory; *p != '\0'; p++)
940 {
941 q=p;
942 while ((*q != '\n') && (*q != '\0'))
943 q++;
944 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
945 p=q;
cristyb51dff52011-05-19 16:55:47 +0000946 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +0000947 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +0000948 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000949 (void) SetWarningHandler(handler);
950 if (tile == (Image *) NULL)
951 {
cristyb51dff52011-05-19 16:55:47 +0000952 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000953 continue;
954 }
cristy1e604812011-05-19 18:07:50 +0000955 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
956 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +0000957 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +0000958 ResetImagePropertyIterator(tile);
959 property=GetNextImageProperty(tile);
960 while (property != (const char *) NULL)
961 {
cristyb51dff52011-05-19 16:55:47 +0000962 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +0000963 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000964 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000965 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +0000966 property=GetNextImageProperty(tile);
967 }
968 tile=DestroyImage(tile);
969 }
970 image_info=DestroyImageInfo(image_info);
971 }
cristyd15e6592011-10-15 00:13:06 +0000972 (void) GetImageProperty(image,"exif:*",exception);
cristy3ed852e2009-09-05 21:47:34 +0000973 ResetImagePropertyIterator(image);
974 property=GetNextImageProperty(image);
975 if (property != (const char *) NULL)
976 {
977 /*
978 Display image properties.
979 */
cristyb51dff52011-05-19 16:55:47 +0000980 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +0000981 while (property != (const char *) NULL)
982 {
cristyb51dff52011-05-19 16:55:47 +0000983 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +0000984 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000985 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000986 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +0000987 property=GetNextImageProperty(image);
988 }
989 }
cristyb51dff52011-05-19 16:55:47 +0000990 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +0000991 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +0000992 if (value != (const char *) NULL)
993 {
994 /*
995 Display clipping path.
996 */
cristyb51dff52011-05-19 16:55:47 +0000997 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +0000998 if (strlen(value) > 80)
999 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +00001000 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001001 }
1002 ResetImageProfileIterator(image);
1003 name=GetNextImageProfile(image);
1004 if (name != (char *) NULL)
1005 {
1006 const StringInfo
1007 *profile;
1008
1009 /*
1010 Identify image profiles.
1011 */
cristyb51dff52011-05-19 16:55:47 +00001012 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +00001013 while (name != (char *) NULL)
1014 {
1015 profile=GetImageProfile(image,name);
1016 if (profile == (StringInfo *) NULL)
1017 continue;
cristy1e604812011-05-19 18:07:50 +00001018 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1019 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001020#if defined(MAGICKCORE_LCMS_DELEGATE)
1021 if ((LocaleCompare(name,"icc") == 0) ||
1022 (LocaleCompare(name,"icm") == 0))
1023 {
1024 cmsHPROFILE
1025 icc_profile;
1026
1027 icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile),
cristyd09bcf92010-03-25 03:04:45 +00001028 (cmsUInt32Number) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +00001029 if (icc_profile != (cmsHPROFILE *) NULL)
1030 {
cristyd09bcf92010-03-25 03:04:45 +00001031#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
cristy3ed852e2009-09-05 21:47:34 +00001032 const char
1033 *name;
1034
1035 name=cmsTakeProductName(icc_profile);
1036 if (name != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001037 (void) FormatLocaleFile(file," %s\n",name);
cristyd09bcf92010-03-25 03:04:45 +00001038#else
1039 char
1040 info[MaxTextExtent];
1041
1042 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription,
1043 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001044 (void) FormatLocaleFile(file," Description: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001045 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer,
1046 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001047 (void) FormatLocaleFile(file," Manufacturer: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001048 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en",
1049 "US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001050 (void) FormatLocaleFile(file," Model: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001051 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright,
1052 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +00001053 (void) FormatLocaleFile(file," Copyright: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +00001054#endif
cristy3ed852e2009-09-05 21:47:34 +00001055 (void) cmsCloseProfile(icc_profile);
1056 }
1057 }
1058#endif
1059 if (LocaleCompare(name,"iptc") == 0)
1060 {
1061 char
1062 *attribute,
1063 **attribute_list;
1064
1065 const char
1066 *tag;
1067
cristycee97112010-05-28 00:44:52 +00001068 long
cristy3ed852e2009-09-05 21:47:34 +00001069 dataset,
1070 record,
1071 sentinel;
1072
cristybb503372010-05-27 20:51:26 +00001073 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001074 j;
1075
1076 size_t
1077 length,
1078 profile_length;
1079
1080 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +00001081 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +00001082 {
1083 length=1;
1084 sentinel=GetStringInfoDatum(profile)[i++];
1085 if (sentinel != 0x1c)
1086 continue;
1087 dataset=GetStringInfoDatum(profile)[i++];
1088 record=GetStringInfoDatum(profile)[i++];
1089 switch (record)
1090 {
1091 case 5: tag="Image Name"; break;
1092 case 7: tag="Edit Status"; break;
1093 case 10: tag="Priority"; break;
1094 case 15: tag="Category"; break;
1095 case 20: tag="Supplemental Category"; break;
1096 case 22: tag="Fixture Identifier"; break;
1097 case 25: tag="Keyword"; break;
1098 case 30: tag="Release Date"; break;
1099 case 35: tag="Release Time"; break;
1100 case 40: tag="Special Instructions"; break;
1101 case 45: tag="Reference Service"; break;
1102 case 47: tag="Reference Date"; break;
1103 case 50: tag="Reference Number"; break;
1104 case 55: tag="Created Date"; break;
1105 case 60: tag="Created Time"; break;
1106 case 65: tag="Originating Program"; break;
1107 case 70: tag="Program Version"; break;
1108 case 75: tag="Object Cycle"; break;
1109 case 80: tag="Byline"; break;
1110 case 85: tag="Byline Title"; break;
1111 case 90: tag="City"; break;
1112 case 95: tag="Province State"; break;
1113 case 100: tag="Country Code"; break;
1114 case 101: tag="Country"; break;
1115 case 103: tag="Original Transmission Reference"; break;
1116 case 105: tag="Headline"; break;
1117 case 110: tag="Credit"; break;
1118 case 115: tag="Src"; break;
1119 case 116: tag="Copyright String"; break;
1120 case 120: tag="Caption"; break;
1121 case 121: tag="Local Caption"; break;
1122 case 122: tag="Caption Writer"; break;
1123 case 200: tag="Custom Field 1"; break;
1124 case 201: tag="Custom Field 2"; break;
1125 case 202: tag="Custom Field 3"; break;
1126 case 203: tag="Custom Field 4"; break;
1127 case 204: tag="Custom Field 5"; break;
1128 case 205: tag="Custom Field 6"; break;
1129 case 206: tag="Custom Field 7"; break;
1130 case 207: tag="Custom Field 8"; break;
1131 case 208: tag="Custom Field 9"; break;
1132 case 209: tag="Custom Field 10"; break;
1133 case 210: tag="Custom Field 11"; break;
1134 case 211: tag="Custom Field 12"; break;
1135 case 212: tag="Custom Field 13"; break;
1136 case 213: tag="Custom Field 14"; break;
1137 case 214: tag="Custom Field 15"; break;
1138 case 215: tag="Custom Field 16"; break;
1139 case 216: tag="Custom Field 17"; break;
1140 case 217: tag="Custom Field 18"; break;
1141 case 218: tag="Custom Field 19"; break;
1142 case 219: tag="Custom Field 20"; break;
1143 default: tag="unknown"; break;
1144 }
cristy1e604812011-05-19 18:07:50 +00001145 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1146 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001147 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1148 length|=GetStringInfoDatum(profile)[i++];
1149 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001150 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001151 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1152 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001153 if (attribute != (char *) NULL)
1154 {
1155 (void) CopyMagickString(attribute,(char *)
1156 GetStringInfoDatum(profile)+i,length+1);
1157 attribute_list=StringToList(attribute);
1158 if (attribute_list != (char **) NULL)
1159 {
1160 for (j=0; attribute_list[j] != (char *) NULL; j++)
1161 {
1162 (void) fputs(attribute_list[j],file);
1163 (void) fputs("\n",file);
1164 attribute_list[j]=(char *) RelinquishMagickMemory(
1165 attribute_list[j]);
1166 }
1167 attribute_list=(char **) RelinquishMagickMemory(
1168 attribute_list);
1169 }
1170 attribute=DestroyString(attribute);
1171 }
1172 }
1173 }
1174 if (image->debug != MagickFalse)
1175 PrintStringInfo(file,name,profile);
1176 name=GetNextImageProfile(image);
1177 }
1178 }
1179 ResetImageArtifactIterator(image);
1180 artifact=GetNextImageArtifact(image);
1181 if (artifact != (const char *) NULL)
1182 {
1183 /*
1184 Display image artifacts.
1185 */
cristyb51dff52011-05-19 16:55:47 +00001186 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001187 while (artifact != (const char *) NULL)
1188 {
cristyb51dff52011-05-19 16:55:47 +00001189 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001190 value=GetImageArtifact(image,artifact);
1191 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001192 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001193 artifact=GetNextImageArtifact(image);
1194 }
1195 }
1196 ResetImageRegistryIterator();
1197 registry=GetNextImageRegistry();
1198 if (registry != (const char *) NULL)
1199 {
1200 /*
1201 Display image registry.
1202 */
cristyb51dff52011-05-19 16:55:47 +00001203 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001204 while (registry != (const char *) NULL)
1205 {
cristyb51dff52011-05-19 16:55:47 +00001206 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001207 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001208 exception);
cristy3ed852e2009-09-05 21:47:34 +00001209 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001210 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001211 registry=GetNextImageRegistry();
1212 }
1213 }
cristyb51dff52011-05-19 16:55:47 +00001214 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001215 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001216 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001217 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001218 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001219 MagickFalse,format);
1220 if (strlen(format) > 1)
1221 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001222 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001223 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001224 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001225 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1226 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001227 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001228 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1229 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001230 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001231 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001232 (void) fflush(file);
1233 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1234}