blob: f2ee34628a6ea6257b558e43d2852921d80a9bde [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
cristy95a072b2011-10-13 18:03:11 +0000212static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
cristybd822072010-01-27 00:30:00 +0000213 const char *name,const double scale,
214 const ChannelStatistics *channel_statistics)
215{
216#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000217 " (%g)\n max: " QuantumFormat " (%g)\n" \
218 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
219 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000220
cristy20ec7592011-05-29 01:28:05 +0000221 ssize_t
222 n;
cristybd822072010-01-27 00:30:00 +0000223
cristy20ec7592011-05-29 01:28:05 +0000224 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000225 channel_statistics[channel].minima),channel_statistics[channel].minima/
226 (double) QuantumRange,ClampToQuantum(scale*
227 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
228 (double) QuantumRange,scale*channel_statistics[channel].mean,
229 channel_statistics[channel].mean/(double) QuantumRange,scale*
230 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000231 channel_statistics[channel].standard_deviation/(double) QuantumRange,
232 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000233 return(n);
cristybd822072010-01-27 00:30:00 +0000234}
235
236MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
cristya4037272011-08-28 15:11:39 +0000237 const MagickBooleanType verbose,ExceptionInfo *exception)
cristybd822072010-01-27 00:30:00 +0000238{
cristy3ed852e2009-09-05 21:47:34 +0000239 char
240 color[MaxTextExtent],
241 format[MaxTextExtent],
242 key[MaxTextExtent];
243
cristybd822072010-01-27 00:30:00 +0000244 ChannelFeatures
245 *channel_features;
246
247 ChannelStatistics
248 *channel_statistics;
249
cristy3ed852e2009-09-05 21:47:34 +0000250 ColorspaceType
251 colorspace;
252
253 const char
254 *artifact,
255 *name,
256 *property,
257 *registry,
258 *value;
259
260 const MagickInfo
261 *magick_info;
262
cristy3ed852e2009-09-05 21:47:34 +0000263 double
264 elapsed_time,
265 user_time;
266
cristy3ed852e2009-09-05 21:47:34 +0000267 ImageType
268 type;
269
cristy3ed852e2009-09-05 21:47:34 +0000270 MagickBooleanType
271 ping;
272
cristy4c08aed2011-07-01 19:47:50 +0000273 register const Quantum
274 *p;
275
cristybb503372010-05-27 20:51:26 +0000276 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000277 i,
278 x;
279
cristybb503372010-05-27 20:51:26 +0000280 size_t
cristybd822072010-01-27 00:30:00 +0000281 distance,
cristy3ed852e2009-09-05 21:47:34 +0000282 scale;
283
cristy9d314ff2011-03-09 01:30:28 +0000284 ssize_t
285 y;
286
cristy3ed852e2009-09-05 21:47:34 +0000287 assert(image != (Image *) NULL);
288 assert(image->signature == MagickSignature);
289 if (image->debug != MagickFalse)
290 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
291 if (file == (FILE *) NULL)
292 file=stdout;
293 *format='\0';
294 elapsed_time=GetElapsedTime(&image->timer);
295 user_time=GetUserTime(&image->timer);
296 GetTimerInfo(&image->timer);
297 if (verbose == MagickFalse)
298 {
299 /*
300 Display summary info about the image.
301 */
302 if (*image->magick_filename != '\0')
303 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000304 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000305 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000306 (GetNextImageInList(image) == (Image *) NULL) &&
307 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000308 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000309 else
cristy1e604812011-05-19 18:07:50 +0000310 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
311 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000312 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000313 if ((image->magick_columns != 0) || (image->magick_rows != 0))
314 if ((image->magick_columns != image->columns) ||
315 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000316 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
317 image->magick_columns,(double) image->magick_rows);
318 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
319 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000320 if ((image->page.width != 0) || (image->page.height != 0) ||
321 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000322 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000323 image->page.width,(double) image->page.height,(double) image->page.x,
324 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000325 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000326 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000327 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
328 MagickTypeOptions,(ssize_t) image->type));
cristy479d4622012-08-22 13:03:27 +0000329 if (image->colorspace != UndefinedColorspace)
330 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
331 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristy3ed852e2009-09-05 21:47:34 +0000332 if (image->storage_class == DirectClass)
333 {
cristy3ed852e2009-09-05 21:47:34 +0000334 if (image->total_colors != 0)
335 {
cristyb9080c92009-12-01 20:13:26 +0000336 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000337 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000338 }
339 }
340 else
341 if (image->total_colors <= image->colors)
cristy479d4622012-08-22 13:03:27 +0000342 (void) FormatLocaleFile(file,"%.20gc ",(double)
cristy1e604812011-05-19 18:07:50 +0000343 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000344 else
cristy479d4622012-08-22 13:03:27 +0000345 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000346 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000347 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000348 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000349 (image->error.mean_error_per_pixel+0.5),
350 image->error.normalized_mean_error,
351 image->error.normalized_maximum_error);
352 if (GetBlobSize(image) != 0)
353 {
cristyb9080c92009-12-01 20:13:26 +0000354 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000355 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000356 }
cristy1e604812011-05-19 18:07:50 +0000357 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
358 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
359 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
360 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000361 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000362 (void) fflush(file);
363 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
364 }
365 /*
366 Display verbose info about the image.
367 */
cristy4c08aed2011-07-01 19:47:50 +0000368 p=GetVirtualPixels(image,0,0,1,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000369 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
cristya4037272011-08-28 15:11:39 +0000370 type=GetImageType(image,exception);
cristy018f07f2011-09-04 21:15:19 +0000371 (void) SignatureImage(image,exception);
cristyb51dff52011-05-19 16:55:47 +0000372 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000373 if (*image->magick_filename != '\0')
374 if (LocaleCompare(image->magick_filename,image->filename) != 0)
375 {
376 char
377 filename[MaxTextExtent];
378
379 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000380 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000381 }
cristya4037272011-08-28 15:11:39 +0000382 magick_info=GetMagickInfo(image->magick,exception);
cristy3ed852e2009-09-05 21:47:34 +0000383 if ((magick_info == (const MagickInfo *) NULL) ||
cristy4a6ab482013-08-09 01:29:35 +0000384 (GetMagickDescription(magick_info) == (const char *) NULL))
cristyb51dff52011-05-19 16:55:47 +0000385 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000386 else
cristyb51dff52011-05-19 16:55:47 +0000387 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000388 GetMagickDescription(magick_info));
cristy4a6ab482013-08-09 01:29:35 +0000389 if ((magick_info == (const MagickInfo *) NULL) ||
390 (GetMagickMimeType(magick_info) != (const char *) NULL))
391 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
392 magick_info);
cristy1e604812011-05-19 18:07:50 +0000393 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
394 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000395 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000396 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
397 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000398 if ((image->magick_columns != 0) || (image->magick_rows != 0))
399 if ((image->magick_columns != image->columns) ||
400 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000401 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000402 image->magick_columns,(double) image->magick_rows);
cristy2a11bef2011-10-28 18:33:11 +0000403 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
cristy3ed852e2009-09-05 21:47:34 +0000404 {
cristy2a11bef2011-10-28 18:33:11 +0000405 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
406 image->resolution.y);
cristy1e604812011-05-19 18:07:50 +0000407 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
cristy2a11bef2011-10-28 18:33:11 +0000408 image->columns/image->resolution.x,(double) image->rows/
409 image->resolution.y);
cristy3ed852e2009-09-05 21:47:34 +0000410 }
cristyb51dff52011-05-19 16:55:47 +0000411 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000412 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000413 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
414 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000415 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000416 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000417 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000418 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000419 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000420 /*
421 Detail channel depth and extrema.
422 */
cristyb51dff52011-05-19 16:55:47 +0000423 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000424 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000425 channel_statistics=(ChannelStatistics *) NULL;
cristy15a88782010-01-31 23:24:49 +0000426 channel_features=(ChannelFeatures *) NULL;
427 colorspace=image->colorspace;
cristy564a5692012-01-20 23:56:26 +0000428 scale=1;
cristy3ed852e2009-09-05 21:47:34 +0000429 if (ping == MagickFalse)
430 {
cristybb503372010-05-27 20:51:26 +0000431 size_t
cristy3ed852e2009-09-05 21:47:34 +0000432 depth;
433
cristya4037272011-08-28 15:11:39 +0000434 channel_statistics=GetImageStatistics(image,exception);
cristy15a88782010-01-31 23:24:49 +0000435 artifact=GetImageArtifact(image,"identify:features");
436 if (artifact != (const char *) NULL)
437 {
438 distance=StringToUnsignedLong(artifact);
cristya4037272011-08-28 15:11:39 +0000439 channel_features=GetImageFeatures(image,distance,exception);
cristy15a88782010-01-31 23:24:49 +0000440 }
cristya4037272011-08-28 15:11:39 +0000441 depth=GetImageDepth(image,exception);
cristy3ed852e2009-09-05 21:47:34 +0000442 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000443 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
444 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000445 else
cristyb51dff52011-05-19 16:55:47 +0000446 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000447 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000448 (void) FormatLocaleFile(file," Channel depth:\n");
cristya4037272011-08-28 15:11:39 +0000449 if (IsImageGray(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000450 colorspace=GRAYColorspace;
451 switch (colorspace)
452 {
453 case RGBColorspace:
454 default:
455 {
cristyb51dff52011-05-19 16:55:47 +0000456 (void) FormatLocaleFile(file," red: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000457 channel_statistics[RedPixelChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000458 (void) FormatLocaleFile(file," green: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000459 channel_statistics[GreenPixelChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000460 (void) FormatLocaleFile(file," blue: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000461 channel_statistics[BluePixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000462 break;
463 }
464 case CMYKColorspace:
465 {
cristyb51dff52011-05-19 16:55:47 +0000466 (void) FormatLocaleFile(file," cyan: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000467 channel_statistics[CyanPixelChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000468 (void) FormatLocaleFile(file," magenta: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000469 channel_statistics[MagentaPixelChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000470 (void) FormatLocaleFile(file," yellow: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000471 channel_statistics[YellowPixelChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000472 (void) FormatLocaleFile(file," black: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000473 channel_statistics[BlackPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000474 break;
475 }
476 case GRAYColorspace:
477 {
cristyb51dff52011-05-19 16:55:47 +0000478 (void) FormatLocaleFile(file," gray: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000479 channel_statistics[GrayPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000480 break;
481 }
482 }
cristy8a46d822012-08-28 23:32:39 +0000483 if (image->alpha_trait == BlendPixelTrait)
cristyb51dff52011-05-19 16:55:47 +0000484 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristy95a072b2011-10-13 18:03:11 +0000485 channel_statistics[AlphaPixelChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000486 scale=1;
487 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000488 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000489 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000490 }
491 if (channel_statistics != (ChannelStatistics *) NULL)
492 {
cristyb51dff52011-05-19 16:55:47 +0000493 (void) FormatLocaleFile(file," Channel statistics:\n");
cristya9336072013-03-19 23:14:40 +0000494 (void) FormatLocaleFile(file," Pixels: %.20g\n",
495 channel_statistics[CompositePixelChannel].area);
cristy3ed852e2009-09-05 21:47:34 +0000496 switch (colorspace)
497 {
498 case RGBColorspace:
499 default:
500 {
cristy95a072b2011-10-13 18:03:11 +0000501 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
502 scale,channel_statistics);
503 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
504 scale,channel_statistics);
505 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
506 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000507 break;
508 }
509 case CMYKColorspace:
510 {
cristy95a072b2011-10-13 18:03:11 +0000511 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
512 scale,channel_statistics);
513 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
514 scale,channel_statistics);
515 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
516 scale,channel_statistics);
517 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
518 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000519 break;
520 }
521 case GRAYColorspace:
522 {
cristy95a072b2011-10-13 18:03:11 +0000523 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
524 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000525 break;
526 }
527 }
cristy8a46d822012-08-28 23:32:39 +0000528 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000529 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/
530 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000531 if (colorspace != GRAYColorspace)
532 {
cristyb51dff52011-05-19 16:55:47 +0000533 (void) FormatLocaleFile(file," Image statistics:\n");
cristy3fac9ec2011-11-17 18:04:39 +0000534 (void) PrintChannelStatistics(file,(PixelChannel) MaxPixelChannels,
535 "Overall",1.0/scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000536 }
537 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
538 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000539 }
cristybd822072010-01-27 00:30:00 +0000540 if (channel_features != (ChannelFeatures *) NULL)
541 {
cristy1e604812011-05-19 18:07:50 +0000542 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
543 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000544 switch (colorspace)
545 {
546 case RGBColorspace:
547 default:
cristy549a37e2010-01-26 15:24:15 +0000548 {
cristy95a072b2011-10-13 18:03:11 +0000549 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
cristybd822072010-01-27 00:30:00 +0000550 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000551 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
552 channel_features);
553 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
554 channel_features);
cristybd822072010-01-27 00:30:00 +0000555 break;
556 }
557 case CMYKColorspace:
558 {
cristy95a072b2011-10-13 18:03:11 +0000559 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
cristybd822072010-01-27 00:30:00 +0000560 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000561 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000562 channel_features);
cristy95a072b2011-10-13 18:03:11 +0000563 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
564 channel_features);
565 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000566 channel_features);
567 break;
568 }
569 case GRAYColorspace:
570 {
cristy95a072b2011-10-13 18:03:11 +0000571 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
572 channel_features);
cristybd822072010-01-27 00:30:00 +0000573 break;
574 }
575 }
cristy8a46d822012-08-28 23:32:39 +0000576 if (image->alpha_trait == BlendPixelTrait)
cristy95a072b2011-10-13 18:03:11 +0000577 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
578 channel_features);
cristybd822072010-01-27 00:30:00 +0000579 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
580 channel_features);
581 }
582 if (ping == MagickFalse)
583 {
cristy3ed852e2009-09-05 21:47:34 +0000584 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000585 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy7c3af952011-10-20 16:04:16 +0000586 GetImageTotalInkDensity(image,exception)/(double) QuantumRange);
cristy3ed852e2009-09-05 21:47:34 +0000587 x=0;
cristy8a46d822012-08-28 23:32:39 +0000588 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000589 {
cristy4c08aed2011-07-01 19:47:50 +0000590 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000591 *p;
592
cristy4c08aed2011-07-01 19:47:50 +0000593 p=(const Quantum *) NULL;
cristybb503372010-05-27 20:51:26 +0000594 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000595 {
596 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000597 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000598 break;
cristybb503372010-05-27 20:51:26 +0000599 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000600 {
cristy4c08aed2011-07-01 19:47:50 +0000601 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
cristy3ed852e2009-09-05 21:47:34 +0000602 break;
cristyed231572011-07-14 02:18:59 +0000603 p+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000604 }
cristybb503372010-05-27 20:51:26 +0000605 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000606 break;
607 }
cristybb503372010-05-27 20:51:26 +0000608 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000609 {
610 char
611 tuple[MaxTextExtent];
612
cristy4c08aed2011-07-01 19:47:50 +0000613 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000614 pixel;
615
cristy4c08aed2011-07-01 19:47:50 +0000616 GetPixelInfo(image,&pixel);
cristy803640d2011-11-17 02:11:32 +0000617 GetPixelInfoPixel(image,p,&pixel);
cristy269c9412011-10-13 23:41:15 +0000618 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
cristya4037272011-08-28 15:11:39 +0000619 exception);
cristyb51dff52011-05-19 16:55:47 +0000620 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000621 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000622 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000623 }
624 }
cristya4037272011-08-28 15:11:39 +0000625 if (IsHistogramImage(image,exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000626 {
cristy4c967562011-06-16 01:46:57 +0000627 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
cristya4037272011-08-28 15:11:39 +0000628 GetNumberColors(image,(FILE *) NULL,exception));
cristyb51dff52011-05-19 16:55:47 +0000629 (void) FormatLocaleFile(file," Histogram:\n");
cristya4037272011-08-28 15:11:39 +0000630 (void) GetNumberColors(image,file,exception);
cristy3ed852e2009-09-05 21:47:34 +0000631 }
cristye64d6372012-12-07 18:56:48 +0000632 else
633 {
anthony6f201312012-03-30 04:08:15 +0000634 artifact=GetImageArtifact(image,"identify:unique-colors");
anthony7bcfe7f2012-03-30 14:01:22 +0000635 if (IfMagickTrue(IsStringTrue(artifact)))
anthony6f201312012-03-30 04:08:15 +0000636 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
637 GetNumberColors(image,(FILE *) NULL,exception));
638 }
cristy3ed852e2009-09-05 21:47:34 +0000639 }
640 if (image->storage_class == PseudoClass)
641 {
cristy404558c2012-12-07 19:14:39 +0000642 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
643 image->colors);
cristye64d6372012-12-07 18:56:48 +0000644 (void) FormatLocaleFile(file," Colormap:\n");
cristy3ed852e2009-09-05 21:47:34 +0000645 if (image->colors <= 1024)
646 {
647 char
648 color[MaxTextExtent],
649 hex[MaxTextExtent],
650 tuple[MaxTextExtent];
651
cristy4c08aed2011-07-01 19:47:50 +0000652 PixelInfo
cristy3ed852e2009-09-05 21:47:34 +0000653 pixel;
654
cristy101ab702011-10-13 13:06:32 +0000655 register PixelInfo
cristyc47d1f82009-11-26 01:44:43 +0000656 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000657
cristy4c08aed2011-07-01 19:47:50 +0000658 GetPixelInfo(image,&pixel);
cristy3ed852e2009-09-05 21:47:34 +0000659 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000660 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000661 {
cristy9d8c8ce2011-10-25 16:13:52 +0000662 pixel=(*p);
cristy3ed852e2009-09-05 21:47:34 +0000663 (void) CopyMagickString(tuple,"(",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000664 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000665 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000666 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000667 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000668 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000669 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000670 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
cristyfa806a72011-07-04 02:06:13 +0000671 tuple);
cristy3ed852e2009-09-05 21:47:34 +0000672 if (pixel.colorspace == CMYKColorspace)
673 {
674 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000675 ConcatenateColorComponent(&pixel,BlackPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000676 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000677 }
cristy8a46d822012-08-28 23:32:39 +0000678 if (pixel.alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +0000679 {
680 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyed231572011-07-14 02:18:59 +0000681 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
cristyfa806a72011-07-04 02:06:13 +0000682 X11Compliance,tuple);
cristy3ed852e2009-09-05 21:47:34 +0000683 }
684 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
cristy269c9412011-10-13 23:41:15 +0000685 (void) QueryColorname(image,&pixel,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000686 exception);
cristy3ed852e2009-09-05 21:47:34 +0000687 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000688 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
689 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000690 p++;
691 }
692 }
693 }
694 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000695 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000696 image->error.mean_error_per_pixel);
697 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000698 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000699 image->error.normalized_mean_error);
700 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000701 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000702 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +0000703 (void) FormatLocaleFile(file," Rendering intent: %s\n",
704 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
705 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +0000706 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000707 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +0000708 if ((image->chromaticity.red_primary.x != 0.0) ||
709 (image->chromaticity.green_primary.x != 0.0) ||
710 (image->chromaticity.blue_primary.x != 0.0) ||
711 (image->chromaticity.white_point.x != 0.0))
712 {
713 /*
714 Display image chromaticity.
715 */
cristyb51dff52011-05-19 16:55:47 +0000716 (void) FormatLocaleFile(file," Chromaticity:\n");
717 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000718 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000719 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000720 image->chromaticity.green_primary.x,
721 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000722 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000723 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000724 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000725 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
726 }
727 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +0000728 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
729 (double) image->extract_info.width,(double) image->extract_info.height,
730 (double) image->extract_info.x,(double) image->extract_info.y);
cristy3ed852e2009-09-05 21:47:34 +0000731 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000732 exception);
cristyb51dff52011-05-19 16:55:47 +0000733 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000734 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000735 exception);
cristyb51dff52011-05-19 16:55:47 +0000736 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000737 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000738 exception);
cristyb51dff52011-05-19 16:55:47 +0000739 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000740 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
cristya4037272011-08-28 15:11:39 +0000741 exception);
cristyb51dff52011-05-19 16:55:47 +0000742 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
cristya4d10f72013-03-13 21:06:27 +0000743 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
744 MagickInterlaceOptions,(ssize_t) image->interlace));
745 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
746 MagickPixelIntensityOptions,(ssize_t) image->intensity));
cristyb51dff52011-05-19 16:55:47 +0000747 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000748 MagickComposeOptions,(ssize_t) image->compose));
cristy3ed852e2009-09-05 21:47:34 +0000749 if ((image->page.width != 0) || (image->page.height != 0) ||
750 (image->page.x != 0) || (image->page.y != 0))
cristy1e604812011-05-19 18:07:50 +0000751 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
752 (double) image->page.width,(double) image->page.height,(double)
cristye8c25f92010-06-03 00:53:06 +0000753 image->page.x,(double) image->page.y);
cristy3ed852e2009-09-05 21:47:34 +0000754 if ((image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000755 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000756 image->page.x,(double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000757 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000758 MagickDisposeOptions,(ssize_t) image->dispose));
cristy3ed852e2009-09-05 21:47:34 +0000759 if (image->delay != 0)
cristyb51dff52011-05-19 16:55:47 +0000760 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
cristye8c25f92010-06-03 00:53:06 +0000761 (double) image->ticks_per_second);
cristy3ed852e2009-09-05 21:47:34 +0000762 if (image->iterations != 1)
cristy1e604812011-05-19 18:07:50 +0000763 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
764 image->iterations);
cristy3ed852e2009-09-05 21:47:34 +0000765 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
cristy1e604812011-05-19 18:07:50 +0000766 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
767 image->scene,(double) GetImageListLength(image));
cristy3ed852e2009-09-05 21:47:34 +0000768 else
769 if (image->scene != 0)
cristyb51dff52011-05-19 16:55:47 +0000770 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
771 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000772 MagickCompressOptions,(ssize_t) image->compression));
cristy3ed852e2009-09-05 21:47:34 +0000773 if (image->quality != UndefinedCompressionQuality)
cristyb51dff52011-05-19 16:55:47 +0000774 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
cristye7820582013-01-01 23:42:55 +0000775 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
776 MagickOrientationOptions,(ssize_t) image->orientation));
cristy3ed852e2009-09-05 21:47:34 +0000777 if (image->montage != (char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000778 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
cristy3ed852e2009-09-05 21:47:34 +0000779 if (image->directory != (char *) NULL)
780 {
781 Image
782 *tile;
783
784 ImageInfo
785 *image_info;
786
787 register char
788 *p,
789 *q;
790
791 WarningHandler
792 handler;
793
794 /*
795 Display visual image directory.
796 */
797 image_info=AcquireImageInfo();
798 (void) CloneString(&image_info->size,"64x64");
cristyb51dff52011-05-19 16:55:47 +0000799 (void) FormatLocaleFile(file," Directory:\n");
cristy3ed852e2009-09-05 21:47:34 +0000800 for (p=image->directory; *p != '\0'; p++)
801 {
802 q=p;
803 while ((*q != '\n') && (*q != '\0'))
804 q++;
805 (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1));
806 p=q;
cristyb51dff52011-05-19 16:55:47 +0000807 (void) FormatLocaleFile(file," %s",image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +0000808 handler=SetWarningHandler((WarningHandler) NULL);
cristya4037272011-08-28 15:11:39 +0000809 tile=ReadImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000810 (void) SetWarningHandler(handler);
811 if (tile == (Image *) NULL)
812 {
cristyb51dff52011-05-19 16:55:47 +0000813 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000814 continue;
815 }
cristy1e604812011-05-19 18:07:50 +0000816 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
817 tile->magick_columns,(double) tile->magick_rows,tile->magick);
cristy018f07f2011-09-04 21:15:19 +0000818 (void) SignatureImage(tile,exception);
cristy3ed852e2009-09-05 21:47:34 +0000819 ResetImagePropertyIterator(tile);
820 property=GetNextImageProperty(tile);
821 while (property != (const char *) NULL)
822 {
cristyb51dff52011-05-19 16:55:47 +0000823 (void) FormatLocaleFile(file," %s:\n",property);
cristyd15e6592011-10-15 00:13:06 +0000824 value=GetImageProperty(tile,property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000825 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000826 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +0000827 property=GetNextImageProperty(tile);
828 }
829 tile=DestroyImage(tile);
830 }
831 image_info=DestroyImageInfo(image_info);
832 }
cristyd15e6592011-10-15 00:13:06 +0000833 (void) GetImageProperty(image,"exif:*",exception);
cristy3ed852e2009-09-05 21:47:34 +0000834 ResetImagePropertyIterator(image);
835 property=GetNextImageProperty(image);
836 if (property != (const char *) NULL)
837 {
838 /*
839 Display image properties.
840 */
cristyb51dff52011-05-19 16:55:47 +0000841 (void) FormatLocaleFile(file," Properties:\n");
cristy3ed852e2009-09-05 21:47:34 +0000842 while (property != (const char *) NULL)
843 {
cristyb51dff52011-05-19 16:55:47 +0000844 (void) FormatLocaleFile(file," %s: ",property);
cristyd15e6592011-10-15 00:13:06 +0000845 value=GetImageProperty(image,property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000846 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000847 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +0000848 property=GetNextImageProperty(image);
849 }
850 }
cristyb51dff52011-05-19 16:55:47 +0000851 (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1");
cristyd15e6592011-10-15 00:13:06 +0000852 value=GetImageProperty(image,key,exception);
cristy3ed852e2009-09-05 21:47:34 +0000853 if (value != (const char *) NULL)
854 {
855 /*
856 Display clipping path.
857 */
cristyb51dff52011-05-19 16:55:47 +0000858 (void) FormatLocaleFile(file," Clipping path: ");
cristy3ed852e2009-09-05 21:47:34 +0000859 if (strlen(value) > 80)
860 (void) fputc('\n',file);
cristyb51dff52011-05-19 16:55:47 +0000861 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +0000862 }
863 ResetImageProfileIterator(image);
864 name=GetNextImageProfile(image);
865 if (name != (char *) NULL)
866 {
867 const StringInfo
868 *profile;
869
870 /*
871 Identify image profiles.
872 */
cristyb51dff52011-05-19 16:55:47 +0000873 (void) FormatLocaleFile(file," Profiles:\n");
cristy3ed852e2009-09-05 21:47:34 +0000874 while (name != (char *) NULL)
875 {
876 profile=GetImageProfile(image,name);
877 if (profile == (StringInfo *) NULL)
878 continue;
cristy1e604812011-05-19 18:07:50 +0000879 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
880 (double) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +0000881#if defined(MAGICKCORE_LCMS_DELEGATE)
882 if ((LocaleCompare(name,"icc") == 0) ||
883 (LocaleCompare(name,"icm") == 0))
884 {
885 cmsHPROFILE
886 icc_profile;
887
888 icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile),
cristyd09bcf92010-03-25 03:04:45 +0000889 (cmsUInt32Number) GetStringInfoLength(profile));
cristy3ed852e2009-09-05 21:47:34 +0000890 if (icc_profile != (cmsHPROFILE *) NULL)
891 {
cristyd09bcf92010-03-25 03:04:45 +0000892#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
cristy3ed852e2009-09-05 21:47:34 +0000893 const char
894 *name;
895
896 name=cmsTakeProductName(icc_profile);
897 if (name != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +0000898 (void) FormatLocaleFile(file," %s\n",name);
cristyd09bcf92010-03-25 03:04:45 +0000899#else
900 char
901 info[MaxTextExtent];
902
903 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription,
904 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +0000905 (void) FormatLocaleFile(file," Description: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +0000906 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer,
907 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +0000908 (void) FormatLocaleFile(file," Manufacturer: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +0000909 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en",
910 "US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +0000911 (void) FormatLocaleFile(file," Model: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +0000912 (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright,
913 "en","US",info,MaxTextExtent);
cristyb51dff52011-05-19 16:55:47 +0000914 (void) FormatLocaleFile(file," Copyright: %s\n",info);
cristyd09bcf92010-03-25 03:04:45 +0000915#endif
cristy3ed852e2009-09-05 21:47:34 +0000916 (void) cmsCloseProfile(icc_profile);
917 }
918 }
919#endif
920 if (LocaleCompare(name,"iptc") == 0)
921 {
922 char
923 *attribute,
924 **attribute_list;
925
926 const char
927 *tag;
928
cristycee97112010-05-28 00:44:52 +0000929 long
cristy3ed852e2009-09-05 21:47:34 +0000930 dataset,
931 record,
932 sentinel;
933
cristybb503372010-05-27 20:51:26 +0000934 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000935 j;
936
937 size_t
938 length,
939 profile_length;
940
941 profile_length=GetStringInfoLength(profile);
cristybb503372010-05-27 20:51:26 +0000942 for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length)
cristy3ed852e2009-09-05 21:47:34 +0000943 {
944 length=1;
945 sentinel=GetStringInfoDatum(profile)[i++];
946 if (sentinel != 0x1c)
947 continue;
948 dataset=GetStringInfoDatum(profile)[i++];
949 record=GetStringInfoDatum(profile)[i++];
950 switch (record)
951 {
952 case 5: tag="Image Name"; break;
953 case 7: tag="Edit Status"; break;
954 case 10: tag="Priority"; break;
955 case 15: tag="Category"; break;
956 case 20: tag="Supplemental Category"; break;
957 case 22: tag="Fixture Identifier"; break;
958 case 25: tag="Keyword"; break;
959 case 30: tag="Release Date"; break;
960 case 35: tag="Release Time"; break;
961 case 40: tag="Special Instructions"; break;
962 case 45: tag="Reference Service"; break;
963 case 47: tag="Reference Date"; break;
964 case 50: tag="Reference Number"; break;
965 case 55: tag="Created Date"; break;
966 case 60: tag="Created Time"; break;
967 case 65: tag="Originating Program"; break;
968 case 70: tag="Program Version"; break;
969 case 75: tag="Object Cycle"; break;
970 case 80: tag="Byline"; break;
971 case 85: tag="Byline Title"; break;
972 case 90: tag="City"; break;
973 case 95: tag="Province State"; break;
974 case 100: tag="Country Code"; break;
975 case 101: tag="Country"; break;
976 case 103: tag="Original Transmission Reference"; break;
977 case 105: tag="Headline"; break;
978 case 110: tag="Credit"; break;
979 case 115: tag="Src"; break;
980 case 116: tag="Copyright String"; break;
981 case 120: tag="Caption"; break;
982 case 121: tag="Local Caption"; break;
983 case 122: tag="Caption Writer"; break;
984 case 200: tag="Custom Field 1"; break;
985 case 201: tag="Custom Field 2"; break;
986 case 202: tag="Custom Field 3"; break;
987 case 203: tag="Custom Field 4"; break;
988 case 204: tag="Custom Field 5"; break;
989 case 205: tag="Custom Field 6"; break;
990 case 206: tag="Custom Field 7"; break;
991 case 207: tag="Custom Field 8"; break;
992 case 208: tag="Custom Field 9"; break;
993 case 209: tag="Custom Field 10"; break;
994 case 210: tag="Custom Field 11"; break;
995 case 211: tag="Custom Field 12"; break;
996 case 212: tag="Custom Field 13"; break;
997 case 213: tag="Custom Field 14"; break;
998 case 214: tag="Custom Field 15"; break;
999 case 215: tag="Custom Field 16"; break;
1000 case 216: tag="Custom Field 17"; break;
1001 case 217: tag="Custom Field 18"; break;
1002 case 218: tag="Custom Field 19"; break;
1003 case 219: tag="Custom Field 20"; break;
1004 default: tag="unknown"; break;
1005 }
cristy1e604812011-05-19 18:07:50 +00001006 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1007 (double) dataset,(double) record);
cristy3ed852e2009-09-05 21:47:34 +00001008 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1009 length|=GetStringInfoDatum(profile)[i++];
1010 attribute=(char *) NULL;
cristy37e0b382011-06-07 13:31:21 +00001011 if (~length >= (MaxTextExtent-1))
cristya4037272011-08-28 15:11:39 +00001012 attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent,
1013 sizeof(*attribute));
cristy3ed852e2009-09-05 21:47:34 +00001014 if (attribute != (char *) NULL)
1015 {
1016 (void) CopyMagickString(attribute,(char *)
1017 GetStringInfoDatum(profile)+i,length+1);
1018 attribute_list=StringToList(attribute);
1019 if (attribute_list != (char **) NULL)
1020 {
1021 for (j=0; attribute_list[j] != (char *) NULL; j++)
1022 {
1023 (void) fputs(attribute_list[j],file);
1024 (void) fputs("\n",file);
1025 attribute_list[j]=(char *) RelinquishMagickMemory(
1026 attribute_list[j]);
1027 }
1028 attribute_list=(char **) RelinquishMagickMemory(
1029 attribute_list);
1030 }
1031 attribute=DestroyString(attribute);
1032 }
1033 }
1034 }
1035 if (image->debug != MagickFalse)
1036 PrintStringInfo(file,name,profile);
1037 name=GetNextImageProfile(image);
1038 }
1039 }
1040 ResetImageArtifactIterator(image);
1041 artifact=GetNextImageArtifact(image);
1042 if (artifact != (const char *) NULL)
1043 {
1044 /*
1045 Display image artifacts.
1046 */
cristyb51dff52011-05-19 16:55:47 +00001047 (void) FormatLocaleFile(file," Artifacts:\n");
cristy3ed852e2009-09-05 21:47:34 +00001048 while (artifact != (const char *) NULL)
1049 {
cristyb51dff52011-05-19 16:55:47 +00001050 (void) FormatLocaleFile(file," %s: ",artifact);
cristy3ed852e2009-09-05 21:47:34 +00001051 value=GetImageArtifact(image,artifact);
1052 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001053 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001054 artifact=GetNextImageArtifact(image);
1055 }
1056 }
1057 ResetImageRegistryIterator();
1058 registry=GetNextImageRegistry();
1059 if (registry != (const char *) NULL)
1060 {
1061 /*
1062 Display image registry.
1063 */
cristyb51dff52011-05-19 16:55:47 +00001064 (void) FormatLocaleFile(file," Registry:\n");
cristy3ed852e2009-09-05 21:47:34 +00001065 while (registry != (const char *) NULL)
1066 {
cristyb51dff52011-05-19 16:55:47 +00001067 (void) FormatLocaleFile(file," %s: ",registry);
cristy3ed852e2009-09-05 21:47:34 +00001068 value=(const char *) GetImageRegistry(StringRegistryType,registry,
cristya4037272011-08-28 15:11:39 +00001069 exception);
cristy3ed852e2009-09-05 21:47:34 +00001070 if (value != (const char *) NULL)
cristyb51dff52011-05-19 16:55:47 +00001071 (void) FormatLocaleFile(file,"%s\n",value);
cristy3ed852e2009-09-05 21:47:34 +00001072 registry=GetNextImageRegistry();
1073 }
1074 }
cristyb51dff52011-05-19 16:55:47 +00001075 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +00001076 MagickBooleanOptions,(ssize_t) image->taint));
cristyb9080c92009-12-01 20:13:26 +00001077 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristy9c47c732011-11-09 19:58:33 +00001078 (void) FormatLocaleFile(file," Filesize: %s\n",format);
cristyb9080c92009-12-01 20:13:26 +00001079 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
cristy0c1b9762012-01-09 18:08:59 +00001080 MagickFalse,format);
1081 if (strlen(format) > 1)
1082 format[strlen(format)-1]='\0';
cristyb51dff52011-05-19 16:55:47 +00001083 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001084 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001085 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001086 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1087 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001088 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
cristya4037272011-08-28 15:11:39 +00001089 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1090 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001091 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001092 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001093 (void) fflush(file);
1094 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1095}