blob: f25e3c6e313bb2138f510e59614e8e1f1f6aa6ef [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% %
20% Copyright 1999-2008 ImageMagick Studio LLC, a non-profit organization %
21% 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*/
45#include "magick/studio.h"
46#include "magick/annotate.h"
47#include "magick/artifact.h"
cristy78e9c762009-10-14 19:36:18 +000048#include "magick/attribute.h"
cristy3ed852e2009-09-05 21:47:34 +000049#include "magick/blob.h"
50#include "magick/cache.h"
51#include "magick/client.h"
52#include "magick/coder.h"
53#include "magick/color.h"
54#include "magick/configure.h"
55#include "magick/constitute.h"
56#include "magick/decorate.h"
57#include "magick/delegate.h"
58#include "magick/draw.h"
59#include "magick/effect.h"
60#include "magick/exception.h"
61#include "magick/exception-private.h"
cristy549a37e2010-01-26 15:24:15 +000062#include "magick/feature.h"
cristy3ed852e2009-09-05 21:47:34 +000063#include "magick/gem.h"
64#include "magick/geometry.h"
cristyf2e11662009-10-14 01:24:43 +000065#include "magick/histogram.h"
cristy3ed852e2009-09-05 21:47:34 +000066#include "magick/identify.h"
67#include "magick/image.h"
68#include "magick/image-private.h"
69#include "magick/list.h"
70#include "magick/locale_.h"
71#include "magick/log.h"
72#include "magick/magic.h"
73#include "magick/magick.h"
74#include "magick/memory_.h"
75#include "magick/module.h"
76#include "magick/monitor.h"
77#include "magick/montage.h"
78#include "magick/option.h"
79#include "magick/pixel-private.h"
80#include "magick/prepress.h"
81#include "magick/profile.h"
82#include "magick/property.h"
83#include "magick/quantize.h"
84#include "magick/quantum.h"
85#include "magick/random_.h"
86#include "magick/registry.h"
87#include "magick/resize.h"
88#include "magick/resource_.h"
89#include "magick/signature.h"
90#include "magick/statistic.h"
91#include "magick/string_.h"
cristycd483f12010-01-26 15:30:08 +000092#include "magick/string-private.h"
cristy3ed852e2009-09-05 21:47:34 +000093#include "magick/timer.h"
94#include "magick/utility.h"
95#include "magick/version.h"
96#if defined(MAGICKCORE_LCMS_DELEGATE)
cristyd09bcf92010-03-25 03:04:45 +000097#if defined(MAGICKCORE_HAVE_LCMS_LCMS2_H)
98#include <lcms/lcms2.h>
99#elif defined(MAGICKCORE_HAVE_LCMS2_H)
100#include "lcms2.h"
101#elif defined(MAGICKCORE_HAVE_LCMS_LCMS_H)
cristy3ed852e2009-09-05 21:47:34 +0000102#include <lcms/lcms.h>
103#else
104#include "lcms.h"
105#endif
106#endif
107
108/*
cristyd09bcf92010-03-25 03:04:45 +0000109 Define declarations.
110*/
111#if defined(MAGICKCORE_LCMS_DELEGATE)
112#if defined(LCMS_VERSION) && (LCMS_VERSION < 2000)
113#define cmsUInt32Number DWORD
114#endif
115#endif
116
117/*
cristy3ed852e2009-09-05 21:47:34 +0000118%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
119% %
120% %
121% %
122% I d e n t i f y I m a g e %
123% %
124% %
125% %
126%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
127%
128% IdentifyImage() identifies an image by printing its attributes to the file.
129% Attributes include the image width, height, size, and others.
130%
131% The format of the IdentifyImage method is:
132%
133% MagickBooleanType IdentifyImage(Image *image,FILE *file,
134% const MagickBooleanType verbose)
135%
136% A description of each parameter follows:
137%
138% o image: the image.
139%
140% o file: the file, typically stdout.
141%
142% o verbose: A value other than zero prints more detailed information
143% about the image.
144%
145*/
146
cristy20ec7592011-05-29 01:28:05 +0000147static ssize_t PrintChannelFeatures(FILE *file,const ChannelType channel,
cristye1897792010-01-29 02:05:50 +0000148 const char *name,const ChannelFeatures *channel_features)
cristy3ed852e2009-09-05 21:47:34 +0000149{
cristye1897792010-01-29 02:05:50 +0000150#define PrintFeature(feature) \
151 GetMagickPrecision(),(feature)[0], \
152 GetMagickPrecision(),(feature)[1], \
153 GetMagickPrecision(),(feature)[2], \
cristye0acabf2010-01-30 00:52:38 +0000154 GetMagickPrecision(),(feature)[3], \
155 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
cristye1897792010-01-29 02:05:50 +0000156
cristybd822072010-01-27 00:30:00 +0000157#define FeaturesFormat " %s:\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000158 " Angular Second Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000159 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000160 " Contrast:\n" \
cristye0acabf2010-01-30 00:52:38 +0000161 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycdf8e1b2010-01-28 01:52:33 +0000162 " Correlation:\n" \
cristye0acabf2010-01-30 00:52:38 +0000163 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000164 " Sum of Squares: Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000165 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristycf5e6492010-01-28 02:45:28 +0000166 " Inverse Difference Moment:\n" \
cristye0acabf2010-01-30 00:52:38 +0000167 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000168 " Sum Average:\n" \
cristye0acabf2010-01-30 00:52:38 +0000169 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000170 " Sum Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000171 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000172 " Sum Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000173 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000174 " Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000175 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye1897792010-01-29 02:05:50 +0000176 " Difference Variance:\n" \
cristye0acabf2010-01-30 00:52:38 +0000177 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000178 " Difference Entropy:\n" \
cristye0acabf2010-01-30 00:52:38 +0000179 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000180 " Information Measure of Correlation 1:\n" \
cristye0acabf2010-01-30 00:52:38 +0000181 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000182 " Information Measure of Correlation 2:\n" \
cristye0acabf2010-01-30 00:52:38 +0000183 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
cristye0e19dc2010-01-29 02:13:08 +0000184 " Maximum Correlation Coefficient:\n" \
cristyc3ec0d42010-04-07 01:18:08 +0000185 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
cristybd822072010-01-27 00:30:00 +0000186
cristy20ec7592011-05-29 01:28:05 +0000187 ssize_t
188 n;
cristybd822072010-01-27 00:30:00 +0000189
cristy20ec7592011-05-29 01:28:05 +0000190 n=FormatLocaleFile(file,FeaturesFormat,name,
cristye1897792010-01-29 02:05:50 +0000191 PrintFeature(channel_features[channel].angular_second_moment),
192 PrintFeature(channel_features[channel].contrast),
193 PrintFeature(channel_features[channel].correlation),
194 PrintFeature(channel_features[channel].variance_sum_of_squares),
195 PrintFeature(channel_features[channel].inverse_difference_moment),
196 PrintFeature(channel_features[channel].sum_average),
197 PrintFeature(channel_features[channel].sum_variance),
198 PrintFeature(channel_features[channel].sum_entropy),
199 PrintFeature(channel_features[channel].entropy),
cristye0e19dc2010-01-29 02:13:08 +0000200 PrintFeature(channel_features[channel].difference_variance),
201 PrintFeature(channel_features[channel].difference_entropy),
202 PrintFeature(channel_features[channel].measure_of_correlation_1),
203 PrintFeature(channel_features[channel].measure_of_correlation_2),
204 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
cristy20ec7592011-05-29 01:28:05 +0000205 return(n);
cristybd822072010-01-27 00:30:00 +0000206}
207
cristy20ec7592011-05-29 01:28:05 +0000208static ssize_t PrintChannelStatistics(FILE *file,const ChannelType channel,
cristybd822072010-01-27 00:30:00 +0000209 const char *name,const double scale,
210 const ChannelStatistics *channel_statistics)
211{
212#define StatisticsFormat " %s:\n min: " QuantumFormat \
cristye7f51092010-01-17 00:39:37 +0000213 " (%g)\n max: " QuantumFormat " (%g)\n" \
214 " mean: %g (%g)\n standard deviation: %g (%g)\n" \
215 " kurtosis: %g\n skewness: %g\n"
cristy3ed852e2009-09-05 21:47:34 +0000216
cristy20ec7592011-05-29 01:28:05 +0000217 ssize_t
218 n;
cristybd822072010-01-27 00:30:00 +0000219
cristyc70de512010-05-07 23:32:04 +0000220 if (channel == AlphaChannel)
221 {
cristy20ec7592011-05-29 01:28:05 +0000222 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristy240205f2010-05-08 01:53:58 +0000223 (QuantumRange-channel_statistics[channel].maxima)),
cristyc70de512010-05-07 23:32:04 +0000224 (QuantumRange-channel_statistics[channel].maxima)/(double) QuantumRange,
cristy240205f2010-05-08 01:53:58 +0000225 ClampToQuantum(scale*(QuantumRange-channel_statistics[channel].minima)),
226 (QuantumRange-channel_statistics[channel].minima)/(double) QuantumRange,
cristyc70de512010-05-07 23:32:04 +0000227 scale*(QuantumRange-channel_statistics[channel].mean),(QuantumRange-
228 channel_statistics[channel].mean)/(double) QuantumRange,scale*
229 channel_statistics[channel].standard_deviation,
230 channel_statistics[channel].standard_deviation/(double) QuantumRange,
231 channel_statistics[channel].kurtosis,
232 channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000233 return(n);
cristyc70de512010-05-07 23:32:04 +0000234 }
cristy20ec7592011-05-29 01:28:05 +0000235 n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale*
cristya45da3b2010-03-31 02:06:45 +0000236 channel_statistics[channel].minima),channel_statistics[channel].minima/
237 (double) QuantumRange,ClampToQuantum(scale*
238 channel_statistics[channel].maxima),channel_statistics[channel].maxima/
239 (double) QuantumRange,scale*channel_statistics[channel].mean,
240 channel_statistics[channel].mean/(double) QuantumRange,scale*
241 channel_statistics[channel].standard_deviation,
cristy75b5a252010-02-26 02:40:46 +0000242 channel_statistics[channel].standard_deviation/(double) QuantumRange,
243 channel_statistics[channel].kurtosis,channel_statistics[channel].skewness);
cristy20ec7592011-05-29 01:28:05 +0000244 return(n);
cristybd822072010-01-27 00:30:00 +0000245}
246
247MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
248 const MagickBooleanType verbose)
249{
cristy3ed852e2009-09-05 21:47:34 +0000250 char
251 color[MaxTextExtent],
252 format[MaxTextExtent],
253 key[MaxTextExtent];
254
cristybd822072010-01-27 00:30:00 +0000255 ChannelFeatures
256 *channel_features;
257
258 ChannelStatistics
259 *channel_statistics;
260
cristy3ed852e2009-09-05 21:47:34 +0000261 ColorspaceType
262 colorspace;
263
264 const char
265 *artifact,
266 *name,
267 *property,
268 *registry,
269 *value;
270
271 const MagickInfo
272 *magick_info;
273
274 const PixelPacket
275 *pixels;
276
277 double
278 elapsed_time,
279 user_time;
280
281 ExceptionInfo
282 *exception;
283
284 ImageType
285 type;
286
cristy3ed852e2009-09-05 21:47:34 +0000287 MagickBooleanType
288 ping;
289
cristybb503372010-05-27 20:51:26 +0000290 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000291 i,
292 x;
293
cristybb503372010-05-27 20:51:26 +0000294 size_t
cristybd822072010-01-27 00:30:00 +0000295 distance,
cristy3ed852e2009-09-05 21:47:34 +0000296 scale;
297
cristy9d314ff2011-03-09 01:30:28 +0000298 ssize_t
299 y;
300
cristy3ed852e2009-09-05 21:47:34 +0000301 assert(image != (Image *) NULL);
302 assert(image->signature == MagickSignature);
303 if (image->debug != MagickFalse)
304 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
305 if (file == (FILE *) NULL)
306 file=stdout;
307 *format='\0';
308 elapsed_time=GetElapsedTime(&image->timer);
309 user_time=GetUserTime(&image->timer);
310 GetTimerInfo(&image->timer);
311 if (verbose == MagickFalse)
312 {
313 /*
314 Display summary info about the image.
315 */
316 if (*image->magick_filename != '\0')
317 if (LocaleCompare(image->magick_filename,image->filename) != 0)
cristyb51dff52011-05-19 16:55:47 +0000318 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
cristy3ed852e2009-09-05 21:47:34 +0000319 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
cristy81b8ce52010-02-05 01:53:17 +0000320 (GetNextImageInList(image) == (Image *) NULL) &&
321 (image->scene == 0))
cristyb51dff52011-05-19 16:55:47 +0000322 (void) FormatLocaleFile(file,"%s ",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000323 else
cristy1e604812011-05-19 18:07:50 +0000324 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
325 image->scene);
cristyb51dff52011-05-19 16:55:47 +0000326 (void) FormatLocaleFile(file,"%s ",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000327 if ((image->magick_columns != 0) || (image->magick_rows != 0))
328 if ((image->magick_columns != image->columns) ||
329 (image->magick_rows != image->rows))
cristy1e604812011-05-19 18:07:50 +0000330 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
331 image->magick_columns,(double) image->magick_rows);
332 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
333 (double) image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000334 if ((image->page.width != 0) || (image->page.height != 0) ||
335 (image->page.x != 0) || (image->page.y != 0))
cristyb51dff52011-05-19 16:55:47 +0000336 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
cristye8c25f92010-06-03 00:53:06 +0000337 image->page.width,(double) image->page.height,(double) image->page.x,
338 (double) image->page.y);
cristyb51dff52011-05-19 16:55:47 +0000339 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
cristy5f1c1ff2010-12-23 21:38:06 +0000340 if (image->type != UndefinedType)
cristy1e604812011-05-19 18:07:50 +0000341 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
342 MagickTypeOptions,(ssize_t) image->type));
cristy3ed852e2009-09-05 21:47:34 +0000343 if (image->storage_class == DirectClass)
344 {
cristyb51dff52011-05-19 16:55:47 +0000345 (void) FormatLocaleFile(file,"DirectClass ");
cristy3ed852e2009-09-05 21:47:34 +0000346 if (image->total_colors != 0)
347 {
cristyb9080c92009-12-01 20:13:26 +0000348 (void) FormatMagickSize(image->total_colors,MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000349 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000350 }
351 }
352 else
353 if (image->total_colors <= image->colors)
cristy1e604812011-05-19 18:07:50 +0000354 (void) FormatLocaleFile(file,"PseudoClass %.20gc ",(double)
355 image->colors);
cristyf2faecf2010-05-28 19:19:36 +0000356 else
cristyb51dff52011-05-19 16:55:47 +0000357 (void) FormatLocaleFile(file,"PseudoClass %.20g=>%.20gc ",(double)
cristye8c25f92010-06-03 00:53:06 +0000358 image->total_colors,(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000359 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000360 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
cristy3ed852e2009-09-05 21:47:34 +0000361 (image->error.mean_error_per_pixel+0.5),
362 image->error.normalized_mean_error,
363 image->error.normalized_maximum_error);
364 if (GetBlobSize(image) != 0)
365 {
cristyb9080c92009-12-01 20:13:26 +0000366 (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +0000367 (void) FormatLocaleFile(file,"%s ",format);
cristy3ed852e2009-09-05 21:47:34 +0000368 }
cristy1e604812011-05-19 18:07:50 +0000369 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
370 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
371 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
372 floor(elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +0000373 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +0000374 (void) fflush(file);
375 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
376 }
377 /*
378 Display verbose info about the image.
379 */
380 exception=AcquireExceptionInfo();
381 pixels=GetVirtualPixels(image,0,0,1,1,exception);
382 exception=DestroyExceptionInfo(exception);
383 ping=pixels == (const PixelPacket *) NULL ? MagickTrue : MagickFalse;
384 type=GetImageType(image,&image->exception);
385 (void) SignatureImage(image);
cristyb51dff52011-05-19 16:55:47 +0000386 (void) FormatLocaleFile(file,"Image: %s\n",image->filename);
cristy3ed852e2009-09-05 21:47:34 +0000387 if (*image->magick_filename != '\0')
388 if (LocaleCompare(image->magick_filename,image->filename) != 0)
389 {
390 char
391 filename[MaxTextExtent];
392
393 GetPathComponent(image->magick_filename,TailPath,filename);
cristyb51dff52011-05-19 16:55:47 +0000394 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
cristy3ed852e2009-09-05 21:47:34 +0000395 }
396 magick_info=GetMagickInfo(image->magick,&image->exception);
397 if ((magick_info == (const MagickInfo *) NULL) ||
398 (*GetMagickDescription(magick_info) == '\0'))
cristyb51dff52011-05-19 16:55:47 +0000399 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
cristy3ed852e2009-09-05 21:47:34 +0000400 else
cristyb51dff52011-05-19 16:55:47 +0000401 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
cristy3ed852e2009-09-05 21:47:34 +0000402 GetMagickDescription(magick_info));
cristy1e604812011-05-19 18:07:50 +0000403 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
404 MagickClassOptions,(ssize_t) image->storage_class));
cristyb51dff52011-05-19 16:55:47 +0000405 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000406 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
407 image->tile_offset.y);
cristy3ed852e2009-09-05 21:47:34 +0000408 if ((image->magick_columns != 0) || (image->magick_rows != 0))
409 if ((image->magick_columns != image->columns) ||
410 (image->magick_rows != image->rows))
cristyb51dff52011-05-19 16:55:47 +0000411 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000412 image->magick_columns,(double) image->magick_rows);
cristy3ed852e2009-09-05 21:47:34 +0000413 if ((image->x_resolution != 0.0) && (image->y_resolution != 0.0))
414 {
cristyb51dff52011-05-19 16:55:47 +0000415 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->x_resolution,
cristy3ed852e2009-09-05 21:47:34 +0000416 image->y_resolution);
cristy1e604812011-05-19 18:07:50 +0000417 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
418 image->columns/image->x_resolution,(double) image->rows/
419 image->y_resolution);
cristy3ed852e2009-09-05 21:47:34 +0000420 }
cristyb51dff52011-05-19 16:55:47 +0000421 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000422 MagickResolutionOptions,(ssize_t) image->units));
cristy1e604812011-05-19 18:07:50 +0000423 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
424 MagickTypeOptions,(ssize_t) type));
cristy5f1c1ff2010-12-23 21:38:06 +0000425 if (image->type != UndefinedType)
cristyb51dff52011-05-19 16:55:47 +0000426 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000427 MagickTypeOptions,(ssize_t) image->type));
cristyb51dff52011-05-19 16:55:47 +0000428 (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000429 MagickEndianOptions,(ssize_t) image->endian));
cristy3ed852e2009-09-05 21:47:34 +0000430 /*
431 Detail channel depth and extrema.
432 */
cristyb51dff52011-05-19 16:55:47 +0000433 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000434 MagickColorspaceOptions,(ssize_t) image->colorspace));
cristybd822072010-01-27 00:30:00 +0000435 channel_statistics=(ChannelStatistics *) NULL;
cristy15a88782010-01-31 23:24:49 +0000436 channel_features=(ChannelFeatures *) NULL;
437 colorspace=image->colorspace;
cristy3ed852e2009-09-05 21:47:34 +0000438 if (ping == MagickFalse)
439 {
cristybb503372010-05-27 20:51:26 +0000440 size_t
cristy3ed852e2009-09-05 21:47:34 +0000441 depth;
442
cristy15a88782010-01-31 23:24:49 +0000443 channel_statistics=GetImageChannelStatistics(image,&image->exception);
444 artifact=GetImageArtifact(image,"identify:features");
445 if (artifact != (const char *) NULL)
446 {
447 distance=StringToUnsignedLong(artifact);
448 channel_features=GetImageChannelFeatures(image,distance,
449 &image->exception);
450 }
cristy3ed852e2009-09-05 21:47:34 +0000451 depth=GetImageDepth(image,&image->exception);
452 if (image->depth == depth)
cristy1e604812011-05-19 18:07:50 +0000453 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
454 image->depth);
cristy3ed852e2009-09-05 21:47:34 +0000455 else
cristyb51dff52011-05-19 16:55:47 +0000456 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000457 image->depth,(double) depth);
cristyb51dff52011-05-19 16:55:47 +0000458 (void) FormatLocaleFile(file," Channel depth:\n");
cristy3ed852e2009-09-05 21:47:34 +0000459 if (IsGrayImage(image,&image->exception) != MagickFalse)
460 colorspace=GRAYColorspace;
461 switch (colorspace)
462 {
463 case RGBColorspace:
464 default:
465 {
cristyb51dff52011-05-19 16:55:47 +0000466 (void) FormatLocaleFile(file," red: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000467 channel_statistics[RedChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000468 (void) FormatLocaleFile(file," green: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000469 channel_statistics[GreenChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000470 (void) FormatLocaleFile(file," blue: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000471 channel_statistics[BlueChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000472 break;
473 }
474 case CMYKColorspace:
475 {
cristyb51dff52011-05-19 16:55:47 +0000476 (void) FormatLocaleFile(file," cyan: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000477 channel_statistics[CyanChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000478 (void) FormatLocaleFile(file," magenta: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000479 channel_statistics[MagentaChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000480 (void) FormatLocaleFile(file," yellow: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000481 channel_statistics[YellowChannel].depth);
cristyb51dff52011-05-19 16:55:47 +0000482 (void) FormatLocaleFile(file," black: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000483 channel_statistics[BlackChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000484 break;
485 }
486 case GRAYColorspace:
487 {
cristyb51dff52011-05-19 16:55:47 +0000488 (void) FormatLocaleFile(file," gray: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000489 channel_statistics[GrayChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000490 break;
491 }
492 }
cristye8c25f92010-06-03 00:53:06 +0000493 if (image->matte != MagickFalse)
cristyb51dff52011-05-19 16:55:47 +0000494 (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double)
cristye8c25f92010-06-03 00:53:06 +0000495 channel_statistics[OpacityChannel].depth);
cristy3ed852e2009-09-05 21:47:34 +0000496 scale=1;
497 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
cristybb503372010-05-27 20:51:26 +0000498 scale=QuantumRange/((size_t) QuantumRange >> ((size_t)
cristy3ed852e2009-09-05 21:47:34 +0000499 MAGICKCORE_QUANTUM_DEPTH-image->depth));
cristy15a88782010-01-31 23:24:49 +0000500 }
501 if (channel_statistics != (ChannelStatistics *) NULL)
502 {
cristyb51dff52011-05-19 16:55:47 +0000503 (void) FormatLocaleFile(file," Channel statistics:\n");
cristy3ed852e2009-09-05 21:47:34 +0000504 switch (colorspace)
505 {
506 case RGBColorspace:
507 default:
508 {
cristybd822072010-01-27 00:30:00 +0000509 (void) PrintChannelStatistics(file,RedChannel,"Red",1.0/scale,
510 channel_statistics);
511 (void) PrintChannelStatistics(file,GreenChannel,"Green",1.0/scale,
512 channel_statistics);
513 (void) PrintChannelStatistics(file,BlueChannel,"Blue",1.0/scale,
514 channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000515 break;
516 }
517 case CMYKColorspace:
518 {
cristybd822072010-01-27 00:30:00 +0000519 (void) PrintChannelStatistics(file,CyanChannel,"Cyan",1.0/scale,
520 channel_statistics);
521 (void) PrintChannelStatistics(file,MagentaChannel,"Magenta",1.0/scale,
522 channel_statistics);
523 (void) PrintChannelStatistics(file,YellowChannel,"Yellow",1.0/scale,
524 channel_statistics);
525 (void) PrintChannelStatistics(file,BlackChannel,"Black",1.0/scale,
526 channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000527 break;
528 }
529 case GRAYColorspace:
530 {
cristybd822072010-01-27 00:30:00 +0000531 (void) PrintChannelStatistics(file,GrayChannel,"Gray",1.0/scale,
532 channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000533 break;
534 }
535 }
536 if (image->matte != MagickFalse)
cristybd822072010-01-27 00:30:00 +0000537 (void) PrintChannelStatistics(file,AlphaChannel,"Alpha",1.0/scale,
538 channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000539 if (colorspace != GRAYColorspace)
540 {
cristyb51dff52011-05-19 16:55:47 +0000541 (void) FormatLocaleFile(file," Image statistics:\n");
cristy1e604812011-05-19 18:07:50 +0000542 (void) PrintChannelStatistics(file,CompositeChannels,"Overall",1.0/
543 scale,channel_statistics);
cristy3ed852e2009-09-05 21:47:34 +0000544 }
545 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
546 channel_statistics);
cristybd822072010-01-27 00:30:00 +0000547 }
cristybd822072010-01-27 00:30:00 +0000548 if (channel_features != (ChannelFeatures *) NULL)
549 {
cristy1e604812011-05-19 18:07:50 +0000550 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
551 "left and right diagonals, average):\n");
cristybd822072010-01-27 00:30:00 +0000552 switch (colorspace)
553 {
554 case RGBColorspace:
555 default:
cristy549a37e2010-01-26 15:24:15 +0000556 {
cristye1897792010-01-29 02:05:50 +0000557 (void) PrintChannelFeatures(file,RedChannel,"Red",channel_features);
558 (void) PrintChannelFeatures(file,GreenChannel,"Green",
cristybd822072010-01-27 00:30:00 +0000559 channel_features);
cristye1897792010-01-29 02:05:50 +0000560 (void) PrintChannelFeatures(file,BlueChannel,"Blue",channel_features);
cristybd822072010-01-27 00:30:00 +0000561 break;
562 }
563 case CMYKColorspace:
564 {
cristye1897792010-01-29 02:05:50 +0000565 (void) PrintChannelFeatures(file,CyanChannel,"Cyan",channel_features);
566 (void) PrintChannelFeatures(file,MagentaChannel,"Magenta",
cristybd822072010-01-27 00:30:00 +0000567 channel_features);
cristye1897792010-01-29 02:05:50 +0000568 (void) PrintChannelFeatures(file,YellowChannel,"Yellow",
cristybd822072010-01-27 00:30:00 +0000569 channel_features);
cristye1897792010-01-29 02:05:50 +0000570 (void) PrintChannelFeatures(file,BlackChannel,"Black",
cristybd822072010-01-27 00:30:00 +0000571 channel_features);
572 break;
573 }
574 case GRAYColorspace:
575 {
cristye1897792010-01-29 02:05:50 +0000576 (void) PrintChannelFeatures(file,GrayChannel,"Gray",channel_features);
cristybd822072010-01-27 00:30:00 +0000577 break;
578 }
579 }
580 if (image->matte != MagickFalse)
cristye1897792010-01-29 02:05:50 +0000581 (void) PrintChannelFeatures(file,AlphaChannel,"Alpha",channel_features);
cristybd822072010-01-27 00:30:00 +0000582 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
583 channel_features);
584 }
585 if (ping == MagickFalse)
586 {
cristy3ed852e2009-09-05 21:47:34 +0000587 if (image->colorspace == CMYKColorspace)
cristyb51dff52011-05-19 16:55:47 +0000588 (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0*
cristy3ed852e2009-09-05 21:47:34 +0000589 GetImageTotalInkDensity(image)/(double) QuantumRange);
590 x=0;
591 if (image->matte != MagickFalse)
592 {
593 register const IndexPacket
594 *indexes;
595
596 register const PixelPacket
597 *p;
598
599 p=(PixelPacket *) NULL;
600 indexes=(IndexPacket *) NULL;
cristybb503372010-05-27 20:51:26 +0000601 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000602 {
603 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
604 if (p == (const PixelPacket *) NULL)
605 break;
606 indexes=GetVirtualIndexQueue(image);
cristybb503372010-05-27 20:51:26 +0000607 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000608 {
cristyd05ecd12011-04-22 20:44:42 +0000609 if (GetOpacityPixelComponent(p) == (Quantum) TransparentOpacity)
cristy3ed852e2009-09-05 21:47:34 +0000610 break;
611 p++;
612 }
cristybb503372010-05-27 20:51:26 +0000613 if (x < (ssize_t) image->columns)
cristy3ed852e2009-09-05 21:47:34 +0000614 break;
615 }
cristybb503372010-05-27 20:51:26 +0000616 if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows))
cristy3ed852e2009-09-05 21:47:34 +0000617 {
618 char
619 tuple[MaxTextExtent];
620
621 MagickPixelPacket
622 pixel;
623
624 GetMagickPixelPacket(image,&pixel);
625 SetMagickPixelPacket(image,p,indexes+x,&pixel);
626 (void) QueryMagickColorname(image,&pixel,SVGCompliance,tuple,
627 &image->exception);
cristyb51dff52011-05-19 16:55:47 +0000628 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000629 GetColorTuple(&pixel,MagickTrue,tuple);
cristyb51dff52011-05-19 16:55:47 +0000630 (void) FormatLocaleFile(file," %s\n",tuple);
cristy3ed852e2009-09-05 21:47:34 +0000631 }
632 }
cristy83fae872010-04-22 15:04:16 +0000633 artifact=GetImageArtifact(image,"identify:unique-colors");
cristy5f78e802011-01-31 20:02:41 +0000634 if (IsHistogramImage(image,&image->exception) != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000635 {
cristy4c967562011-06-16 01:46:57 +0000636 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
637 GetNumberColors(image,(FILE *) NULL,&image->exception));
cristyb51dff52011-05-19 16:55:47 +0000638 (void) FormatLocaleFile(file," Histogram:\n");
cristy549a37e2010-01-26 15:24:15 +0000639 (void) GetNumberColors(image,file,&image->exception);
cristy3ed852e2009-09-05 21:47:34 +0000640 }
cristy4c967562011-06-16 01:46:57 +0000641 else
642 if ((artifact != (const char *) NULL) &&
643 (IsMagickTrue(artifact) != MagickFalse))
644 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
645 GetNumberColors(image,(FILE *) NULL,&image->exception));
cristy3ed852e2009-09-05 21:47:34 +0000646 }
647 if (image->storage_class == PseudoClass)
648 {
cristyb51dff52011-05-19 16:55:47 +0000649 (void) FormatLocaleFile(file," Colormap: %.20g\n",(double) image->colors);
cristy3ed852e2009-09-05 21:47:34 +0000650 if (image->colors <= 1024)
651 {
652 char
653 color[MaxTextExtent],
654 hex[MaxTextExtent],
655 tuple[MaxTextExtent];
656
657 MagickPixelPacket
658 pixel;
659
660 register PixelPacket
cristyc47d1f82009-11-26 01:44:43 +0000661 *restrict p;
cristy3ed852e2009-09-05 21:47:34 +0000662
663 GetMagickPixelPacket(image,&pixel);
664 p=image->colormap;
cristybb503372010-05-27 20:51:26 +0000665 for (i=0; i < (ssize_t) image->colors; i++)
cristy3ed852e2009-09-05 21:47:34 +0000666 {
667 SetMagickPixelPacket(image,p,(IndexPacket *) NULL,&pixel);
668 (void) CopyMagickString(tuple,"(",MaxTextExtent);
669 ConcatenateColorComponent(&pixel,RedChannel,X11Compliance,tuple);
670 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
671 ConcatenateColorComponent(&pixel,GreenChannel,X11Compliance,tuple);
672 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
673 ConcatenateColorComponent(&pixel,BlueChannel,X11Compliance,tuple);
674 if (pixel.colorspace == CMYKColorspace)
675 {
676 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
677 ConcatenateColorComponent(&pixel,IndexChannel,X11Compliance,
678 tuple);
679 }
680 if (pixel.matte != MagickFalse)
681 {
682 (void) ConcatenateMagickString(tuple,",",MaxTextExtent);
cristyc3ec0d42010-04-07 01:18:08 +0000683 ConcatenateColorComponent(&pixel,AlphaChannel,X11Compliance,
cristy3ed852e2009-09-05 21:47:34 +0000684 tuple);
685 }
686 (void) ConcatenateMagickString(tuple,")",MaxTextExtent);
687 (void) QueryMagickColorname(image,&pixel,SVGCompliance,color,
688 &image->exception);
689 GetColorTuple(&pixel,MagickTrue,hex);
cristy1e604812011-05-19 18:07:50 +0000690 (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple,
691 hex,color);
cristy3ed852e2009-09-05 21:47:34 +0000692 p++;
693 }
694 }
695 }
696 if (image->error.mean_error_per_pixel != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000697 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000698 image->error.mean_error_per_pixel);
699 if (image->error.normalized_mean_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000700 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000701 image->error.normalized_mean_error);
702 if (image->error.normalized_maximum_error != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000703 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
cristy3ed852e2009-09-05 21:47:34 +0000704 image->error.normalized_maximum_error);
cristy1e604812011-05-19 18:07:50 +0000705 (void) FormatLocaleFile(file," Rendering intent: %s\n",
706 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
707 image->rendering_intent));
cristy3ed852e2009-09-05 21:47:34 +0000708 if (image->gamma != 0.0)
cristyb51dff52011-05-19 16:55:47 +0000709 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
cristy3ed852e2009-09-05 21:47:34 +0000710 if ((image->chromaticity.red_primary.x != 0.0) ||
711 (image->chromaticity.green_primary.x != 0.0) ||
712 (image->chromaticity.blue_primary.x != 0.0) ||
713 (image->chromaticity.white_point.x != 0.0))
714 {
715 /*
716 Display image chromaticity.
717 */
cristyb51dff52011-05-19 16:55:47 +0000718 (void) FormatLocaleFile(file," Chromaticity:\n");
719 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000720 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000721 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000722 image->chromaticity.green_primary.x,
723 image->chromaticity.green_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000724 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000725 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
cristyb51dff52011-05-19 16:55:47 +0000726 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
cristy3ed852e2009-09-05 21:47:34 +0000727 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
728 }
729 if ((image->extract_info.width*image->extract_info.height) != 0)
cristy1e604812011-05-19 18:07:50 +0000730 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
731 (double) image->extract_info.width,(double) image->extract_info.height,
732 (double) image->extract_info.x,(double) image->extract_info.y);
cristyb51dff52011-05-19 16:55:47 +0000733 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000734 MagickInterlaceOptions,(ssize_t) image->interlace));
cristy3ed852e2009-09-05 21:47:34 +0000735 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
736 &image->exception);
cristyb51dff52011-05-19 16:55:47 +0000737 (void) FormatLocaleFile(file," Background color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000738 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
739 &image->exception);
cristyb51dff52011-05-19 16:55:47 +0000740 (void) FormatLocaleFile(file," Border color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000741 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
742 &image->exception);
cristyb51dff52011-05-19 16:55:47 +0000743 (void) FormatLocaleFile(file," Matte color: %s\n",color);
cristy3ed852e2009-09-05 21:47:34 +0000744 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
745 &image->exception);
cristyb51dff52011-05-19 16:55:47 +0000746 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
747 (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);
775 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
cristybb503372010-05-27 20:51:26 +0000776 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);
809 tile=ReadImage(image_info,&image->exception);
810 (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);
cristy3ed852e2009-09-05 21:47:34 +0000818 (void) SignatureImage(tile);
819 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);
cristy3ed852e2009-09-05 21:47:34 +0000824 value=GetImageProperty(tile,property);
825 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 }
833 (void) GetImageProperty(image,"exif:*");
834 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);
cristy3ed852e2009-09-05 21:47:34 +0000845 value=GetImageProperty(image,property);
846 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");
cristy3ed852e2009-09-05 21:47:34 +0000852 value=GetImageProperty(image,key);
853 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))
cristy3ed852e2009-09-05 21:47:34 +00001012 attribute=(char *) AcquireQuantumMemory(length+
1013 MaxTextExtent,sizeof(*attribute));
1014 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,
1069 &image->exception);
1070 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);
cristyb51dff52011-05-19 16:55:47 +00001078 (void) FormatLocaleFile(file," Filesize: %sB\n",format);
cristyb9080c92009-12-01 20:13:26 +00001079 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
1080 MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001081 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
cristy3d231692009-09-29 01:05:22 +00001082 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/
cristyb9080c92009-12-01 20:13:26 +00001083 elapsed_time+0.5),MagickFalse,format);
cristyb51dff52011-05-19 16:55:47 +00001084 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1085 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
cristy1e604812011-05-19 18:07:50 +00001086 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
1087 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(
1088 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-floor(
1089 elapsed_time))));
cristyb51dff52011-05-19 16:55:47 +00001090 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
cristy3d231692009-09-29 01:05:22 +00001091 NULL));
cristy3ed852e2009-09-05 21:47:34 +00001092 (void) fflush(file);
1093 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1094}