1 /*
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 % Cristy %
17 % September 1994 %
18 % %
19 % %
20 % Copyright 1999-2021 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 % https://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 "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"
94 #include "MagickCore/token.h"
95 #include "MagickCore/utility.h"
96 #include "MagickCore/utility-private.h"
97 #include "MagickCore/version.h"
98
99 /*
100 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
101 % %
102 % %
103 % %
104 % I d e n t i f y I m a g e %
105 % %
106 % %
107 % %
108 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
109 %
110 % IdentifyImage() identifies an image by printing its attributes to the file.
111 % Attributes include the image width, height, size, and others.
112 %
113 % The format of the IdentifyImage method is:
114 %
115 % MagickBooleanType IdentifyImage(Image *image,FILE *file,
116 % const MagickBooleanType verbose,ExceptionInfo *exception)
117 %
118 % A description of each parameter follows:
119 %
120 % o image: the image.
121 %
122 % o file: the file, typically stdout.
123 %
124 % o verbose: A value other than zero prints more detailed information
125 % about the image.
126 %
127 % o exception: return any errors or warnings in this structure.
128 %
129 */
130
GetLocationStatistics(const Image * image,const StatisticType type,ExceptionInfo * exception)131 static ChannelStatistics *GetLocationStatistics(const Image *image,
132 const StatisticType type,ExceptionInfo *exception)
133 {
134 ChannelStatistics
135 *channel_statistics;
136
137 ssize_t
138 i;
139
140 ssize_t
141 y;
142
143 assert(image != (Image *) NULL);
144 assert(image->signature == MagickCoreSignature);
145 if (image->debug != MagickFalse)
146 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
147 channel_statistics=(ChannelStatistics *) AcquireQuantumMemory(
148 MaxPixelChannels+1,sizeof(*channel_statistics));
149 if (channel_statistics == (ChannelStatistics *) NULL)
150 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
151 (void) memset(channel_statistics,0,(MaxPixelChannels+1)*
152 sizeof(*channel_statistics));
153 for (i=0; i <= (ssize_t) MaxPixelChannels; i++)
154 {
155 switch (type)
156 {
157 case MaximumStatistic:
158 default:
159 {
160 channel_statistics[i].maxima=(-MagickMaximumValue);
161 break;
162 }
163 case MinimumStatistic:
164 {
165 channel_statistics[i].minima=MagickMaximumValue;
166 break;
167 }
168 }
169 }
170 for (y=0; y < (ssize_t) image->rows; y++)
171 {
172 const Quantum
173 *magick_restrict p;
174
175 ssize_t
176 x;
177
178 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
179 if (p == (const Quantum *) NULL)
180 break;
181 for (x=0; x < (ssize_t) image->columns; x++)
182 {
183 if (GetPixelReadMask(image,p) <= (QuantumRange/2))
184 {
185 p+=GetPixelChannels(image);
186 continue;
187 }
188 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
189 {
190 PixelChannel channel = GetPixelChannelChannel(image,i);
191 PixelTrait traits = GetPixelChannelTraits(image,channel);
192 if (traits == UndefinedPixelTrait)
193 continue;
194 switch (type)
195 {
196 case MaximumStatistic:
197 default:
198 {
199 if ((double) p[i] > channel_statistics[channel].maxima)
200 channel_statistics[channel].maxima=(double) p[i];
201 break;
202 }
203 case MinimumStatistic:
204 {
205 if ((double) p[i] < channel_statistics[channel].minima)
206 channel_statistics[channel].minima=(double) p[i];
207 break;
208 }
209 }
210 }
211 p+=GetPixelChannels(image);
212 }
213 }
214 return(channel_statistics);
215 }
216
PrintChannelFeatures(FILE * file,const PixelChannel channel,const char * name,const ChannelFeatures * channel_features)217 static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel,
218 const char *name,const ChannelFeatures *channel_features)
219 {
220 #define PrintFeature(feature) \
221 GetMagickPrecision(),(feature)[0], \
222 GetMagickPrecision(),(feature)[1], \
223 GetMagickPrecision(),(feature)[2], \
224 GetMagickPrecision(),(feature)[3], \
225 GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \
226
227 #define FeaturesFormat " %s:\n" \
228 " Angular Second Moment:\n" \
229 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
230 " Contrast:\n" \
231 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
232 " Correlation:\n" \
233 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
234 " Sum of Squares Variance:\n" \
235 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
236 " Inverse Difference Moment:\n" \
237 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
238 " Sum Average:\n" \
239 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
240 " Sum Variance:\n" \
241 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
242 " Sum Entropy:\n" \
243 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
244 " Entropy:\n" \
245 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
246 " Difference Variance:\n" \
247 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
248 " Difference Entropy:\n" \
249 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
250 " Information Measure of Correlation 1:\n" \
251 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
252 " Information Measure of Correlation 2:\n" \
253 " %.*g, %.*g, %.*g, %.*g, %.*g\n" \
254 " Maximum Correlation Coefficient:\n" \
255 " %.*g, %.*g, %.*g, %.*g, %.*g\n"
256
257 ssize_t
258 n;
259
260 n=FormatLocaleFile(file,FeaturesFormat,name,
261 PrintFeature(channel_features[channel].angular_second_moment),
262 PrintFeature(channel_features[channel].contrast),
263 PrintFeature(channel_features[channel].correlation),
264 PrintFeature(channel_features[channel].variance_sum_of_squares),
265 PrintFeature(channel_features[channel].inverse_difference_moment),
266 PrintFeature(channel_features[channel].sum_average),
267 PrintFeature(channel_features[channel].sum_variance),
268 PrintFeature(channel_features[channel].sum_entropy),
269 PrintFeature(channel_features[channel].entropy),
270 PrintFeature(channel_features[channel].difference_variance),
271 PrintFeature(channel_features[channel].difference_entropy),
272 PrintFeature(channel_features[channel].measure_of_correlation_1),
273 PrintFeature(channel_features[channel].measure_of_correlation_2),
274 PrintFeature(channel_features[channel].maximum_correlation_coefficient));
275 return(n);
276 }
277
PrintChannelLocations(FILE * file,const Image * image,const PixelChannel channel,const char * name,const StatisticType type,const size_t max_locations,const ChannelStatistics * channel_statistics)278 static ssize_t PrintChannelLocations(FILE *file,const Image *image,
279 const PixelChannel channel,const char *name,const StatisticType type,
280 const size_t max_locations,const ChannelStatistics *channel_statistics)
281 {
282 double
283 target;
284
285 ExceptionInfo
286 *exception;
287
288 ssize_t
289 n,
290 y;
291
292 switch (type)
293 {
294 case MaximumStatistic:
295 default:
296 {
297 target=channel_statistics[channel].maxima;
298 break;
299 }
300 case MinimumStatistic:
301 {
302 target=channel_statistics[channel].minima;
303 break;
304 }
305 }
306 (void) FormatLocaleFile(file," %s: %.*g (%.*g)",name,GetMagickPrecision(),
307 target,GetMagickPrecision(),QuantumScale*target);
308 exception=AcquireExceptionInfo();
309 n=0;
310 for (y=0; y < (ssize_t) image->rows; y++)
311 {
312 const Quantum
313 *p;
314
315 ssize_t
316 offset,
317 x;
318
319 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
320 if (p == (const Quantum *) NULL)
321 break;
322 for (x=0; x < (ssize_t) image->columns; x++)
323 {
324 MagickBooleanType
325 match;
326
327 PixelTrait traits = GetPixelChannelTraits(image,channel);
328 if (traits == UndefinedPixelTrait)
329 continue;
330 offset=GetPixelChannelOffset(image,channel);
331 match=fabs((double) (p[offset]-target)) < 0.5 ? MagickTrue : MagickFalse;
332 if (match != MagickFalse)
333 {
334 if ((max_locations != 0) && (n >= (ssize_t) max_locations))
335 break;
336 (void) FormatLocaleFile(file," %.20g,%.20g",(double) x,(double) y);
337 n++;
338 }
339 p+=GetPixelChannels(image);
340 }
341 if (x < (ssize_t) image->columns)
342 break;
343 }
344 (void) FormatLocaleFile(file,"\n");
345 return(n);
346 }
347
PrintChannelMoments(FILE * file,const PixelChannel channel,const char * name,const double scale,const ChannelMoments * channel_moments)348 static ssize_t PrintChannelMoments(FILE *file,const PixelChannel channel,
349 const char *name,const double scale,const ChannelMoments *channel_moments)
350 {
351 double
352 powers[MaximumNumberOfImageMoments] =
353 { 1.0, 2.0, 3.0, 3.0, 6.0, 4.0, 6.0, 4.0 };
354
355 ssize_t
356 i;
357
358 ssize_t
359 n;
360
361 n=FormatLocaleFile(file," %s:\n",name);
362 n+=FormatLocaleFile(file," Centroid: %.*g,%.*g\n",
363 GetMagickPrecision(),channel_moments[channel].centroid.x,
364 GetMagickPrecision(),channel_moments[channel].centroid.y);
365 n+=FormatLocaleFile(file," Ellipse Semi-Major/Minor axis: %.*g,%.*g\n",
366 GetMagickPrecision(),channel_moments[channel].ellipse_axis.x,
367 GetMagickPrecision(),channel_moments[channel].ellipse_axis.y);
368 n+=FormatLocaleFile(file," Ellipse angle: %.*g\n",
369 GetMagickPrecision(),channel_moments[channel].ellipse_angle);
370 n+=FormatLocaleFile(file," Ellipse eccentricity: %.*g\n",
371 GetMagickPrecision(),channel_moments[channel].ellipse_eccentricity);
372 n+=FormatLocaleFile(file," Ellipse intensity: %.*g (%.*g)\n",
373 GetMagickPrecision(),pow(scale,powers[0])*
374 channel_moments[channel].ellipse_intensity,GetMagickPrecision(),
375 channel_moments[channel].ellipse_intensity);
376 for (i=0; i < MaximumNumberOfImageMoments; i++)
377 n+=FormatLocaleFile(file," I%.20g: %.*g (%.*g)\n",i+1.0,
378 GetMagickPrecision(),channel_moments[channel].invariant[i]/pow(scale,
379 powers[i]),GetMagickPrecision(),channel_moments[channel].invariant[i]);
380 return(n);
381 }
382
PrintChannelPerceptualHash(Image * image,FILE * file,const ChannelPerceptualHash * channel_phash)383 static ssize_t PrintChannelPerceptualHash(Image *image,FILE *file,
384 const ChannelPerceptualHash *channel_phash)
385 {
386 ssize_t
387 i;
388
389 ssize_t
390 n;
391
392 (void) FormatLocaleFile(file," Channel perceptual hash: ");
393 for (i=0; i < (ssize_t) channel_phash[0].number_colorspaces; i++)
394 {
395 (void) FormatLocaleFile(file,"%s",CommandOptionToMnemonic(
396 MagickColorspaceOptions,(ssize_t) channel_phash[0].colorspace[i]));
397 if (i < (ssize_t) (channel_phash[0].number_colorspaces-1))
398 (void) FormatLocaleFile(file,", ");
399 }
400 (void) FormatLocaleFile(file,"\n");
401 n=0;
402 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
403 {
404 PixelChannel
405 channel;
406
407 PixelTrait
408 traits;
409
410 ssize_t
411 j;
412
413 channel=GetPixelChannelChannel(image,i);
414 if (channel == IndexPixelChannel)
415 continue;
416 traits=GetPixelChannelTraits(image,channel);
417 if (traits == UndefinedPixelTrait)
418 continue;
419 n=FormatLocaleFile(file," Channel %.20g:\n",(double) channel);
420 for (j=0; j < MaximumNumberOfPerceptualHashes; j++)
421 {
422 ssize_t
423 k;
424
425 n+=FormatLocaleFile(file," PH%.20g: ",(double) j+1);
426 for (k=0; k < (ssize_t) channel_phash[0].number_colorspaces; k++)
427 {
428 n+=FormatLocaleFile(file,"%.*g",GetMagickPrecision(),
429 channel_phash[channel].phash[k][j]);
430 if (k < (ssize_t) (channel_phash[0].number_colorspaces-1))
431 n+=FormatLocaleFile(file,", ");
432 }
433 n+=FormatLocaleFile(file,"\n");
434 }
435 }
436 return(n);
437 }
438
PrintChannelStatistics(FILE * file,const PixelChannel channel,const char * name,const double scale,const ChannelStatistics * channel_statistics)439 static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel,
440 const char *name,const double scale,
441 const ChannelStatistics *channel_statistics)
442 {
443 #define StatisticsFormat " %s:\n min: %.*g (%.*g)\n " \
444 "max: %.*g (%.*g)\n mean: %.*g (%.*g)\n median: %.*g (%.*g)\n " \
445 "standard deviation: %.*g (%.*g)\n kurtosis: %.*g\n " \
446 "skewness: %.*g\n entropy: %.*g\n"
447
448 ssize_t
449 n;
450
451 n=FormatLocaleFile(file,StatisticsFormat,name,GetMagickPrecision(),
452 (double) ClampToQuantum((MagickRealType) (scale*
453 channel_statistics[channel].minima)),GetMagickPrecision(),
454 channel_statistics[channel].minima/(double) QuantumRange,
455 GetMagickPrecision(),(double) ClampToQuantum((MagickRealType) (scale*
456 channel_statistics[channel].maxima)),GetMagickPrecision(),
457 channel_statistics[channel].maxima/(double) QuantumRange,
458 GetMagickPrecision(),scale*channel_statistics[channel].mean,
459 GetMagickPrecision(),channel_statistics[channel].mean/(double) QuantumRange,
460 GetMagickPrecision(),scale*channel_statistics[channel].median,
461 GetMagickPrecision(),channel_statistics[channel].median/(double) QuantumRange,
462 GetMagickPrecision(),scale*channel_statistics[channel].standard_deviation,
463 GetMagickPrecision(),channel_statistics[channel].standard_deviation/
464 (double) QuantumRange,GetMagickPrecision(),
465 channel_statistics[channel].kurtosis,GetMagickPrecision(),
466 channel_statistics[channel].skewness,GetMagickPrecision(),
467 channel_statistics[channel].entropy);
468 return(n);
469 }
470
IdentifyImage(Image * image,FILE * file,const MagickBooleanType verbose,ExceptionInfo * exception)471 MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file,
472 const MagickBooleanType verbose,ExceptionInfo *exception)
473 {
474 char
475 color[MagickPathExtent],
476 format[MagickPathExtent],
477 key[MagickPathExtent];
478
479 ChannelFeatures
480 *channel_features;
481
482 ChannelMoments
483 *channel_moments;
484
485 ChannelPerceptualHash
486 *channel_phash;
487
488 ChannelStatistics
489 *channel_statistics;
490
491 ColorspaceType
492 colorspace;
493
494 const char
495 *artifact,
496 *locate,
497 *name,
498 *property,
499 *registry,
500 *value;
501
502 const MagickInfo
503 *magick_info;
504
505 double
506 elapsed_time,
507 scale,
508 user_time;
509
510 ImageType
511 type;
512
513 MagickBooleanType
514 ping;
515
516 const Quantum
517 *p;
518
519 ssize_t
520 i,
521 x;
522
523 size_t
524 depth,
525 distance;
526
527 ssize_t
528 y;
529
530 assert(image != (Image *) NULL);
531 assert(image->signature == MagickCoreSignature);
532 if (image->debug != MagickFalse)
533 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
534 if (file == (FILE *) NULL)
535 file=stdout;
536 colorspace=image->colorspace;
537 locate=GetImageArtifact(image,"identify:locate");
538 if (locate != (const char *) NULL)
539 {
540 const char
541 *limit;
542
543 size_t
544 max_locations;
545
546 StatisticType
547 statistic_type;
548
549 /*
550 Display minimum, maximum, or mean pixel locations.
551 */
552 statistic_type=(StatisticType) ParseCommandOption(MagickStatisticOptions,
553 MagickFalse,locate);
554 limit=GetImageArtifact(image,"identify:limit");
555 max_locations=0;
556 if (limit != (const char *) NULL)
557 max_locations=StringToUnsignedLong(limit);
558 channel_statistics=GetLocationStatistics(image,statistic_type,exception);
559 if (channel_statistics == (ChannelStatistics *) NULL)
560 return(MagickFalse);
561 (void) FormatLocaleFile(file,"Channel %s locations:\n",locate);
562 switch (colorspace)
563 {
564 case RGBColorspace:
565 case sRGBColorspace:
566 {
567 (void) PrintChannelLocations(file,image,RedPixelChannel,"Red",
568 statistic_type,max_locations,channel_statistics);
569 (void) PrintChannelLocations(file,image,GreenPixelChannel,"Green",
570 statistic_type,max_locations,channel_statistics);
571 (void) PrintChannelLocations(file,image,BluePixelChannel,"Blue",
572 statistic_type,max_locations,channel_statistics);
573 break;
574 }
575 case CMYKColorspace:
576 {
577 (void) PrintChannelLocations(file,image,CyanPixelChannel,"Cyan",
578 statistic_type,max_locations,channel_statistics);
579 (void) PrintChannelLocations(file,image,MagentaPixelChannel,
580 "Magenta",statistic_type,max_locations,channel_statistics);
581 (void) PrintChannelLocations(file,image,YellowPixelChannel,"Yellow",
582 statistic_type,max_locations,channel_statistics);
583 (void) PrintChannelLocations(file,image,BlackPixelChannel,"Black",
584 statistic_type,max_locations,channel_statistics);
585 break;
586 }
587 case LinearGRAYColorspace:
588 case GRAYColorspace:
589 {
590 (void) PrintChannelLocations(file,image,GrayPixelChannel,"Gray",
591 statistic_type,max_locations,channel_statistics);
592 break;
593 }
594 default:
595 {
596 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
597 (void) PrintChannelLocations(file,image,(PixelChannel) i,"Gray",
598 statistic_type,max_locations,channel_statistics);
599 break;
600 }
601 }
602 if (image->alpha_trait != UndefinedPixelTrait)
603 (void) PrintChannelLocations(file,image,AlphaPixelChannel,"Alpha",
604 statistic_type,max_locations,channel_statistics);
605 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
606 channel_statistics);
607 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
608 }
609 *format='\0';
610 elapsed_time=GetElapsedTime(&image->timer);
611 user_time=GetUserTime(&image->timer);
612 GetTimerInfo(&image->timer);
613 if (verbose == MagickFalse)
614 {
615 /*
616 Display summary info about the image.
617 */
618 if (*image->magick_filename != '\0')
619 if (LocaleCompare(image->magick_filename,image->filename) != 0)
620 (void) FormatLocaleFile(file,"%s=>",image->magick_filename);
621 if ((GetPreviousImageInList(image) == (Image *) NULL) &&
622 (GetNextImageInList(image) == (Image *) NULL) &&
623 (image->scene == 0))
624 (void) FormatLocaleFile(file,"%s ",image->filename);
625 else
626 (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double)
627 image->scene);
628 (void) FormatLocaleFile(file,"%s ",image->magick);
629 if ((image->magick_columns != 0) || (image->magick_rows != 0))
630 if ((image->magick_columns != image->columns) ||
631 (image->magick_rows != image->rows))
632 (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double)
633 image->magick_columns,(double) image->magick_rows);
634 (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns,
635 (double) image->rows);
636 if ((image->page.width != 0) || (image->page.height != 0) ||
637 (image->page.x != 0) || (image->page.y != 0))
638 (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double)
639 image->page.width,(double) image->page.height,(double) image->page.x,
640 (double) image->page.y);
641 (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth);
642 if (image->type != UndefinedType)
643 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
644 MagickTypeOptions,(ssize_t) image->type));
645 if (colorspace != UndefinedColorspace)
646 (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic(
647 MagickColorspaceOptions,(ssize_t) colorspace));
648 if (image->storage_class == DirectClass)
649 {
650 if (image->total_colors != 0)
651 {
652 (void) FormatMagickSize(image->total_colors,MagickFalse,"B",
653 MagickPathExtent,format);
654 (void) FormatLocaleFile(file,"%s ",format);
655 }
656 }
657 else
658 if (image->total_colors <= image->colors)
659 (void) FormatLocaleFile(file,"%.20gc ",(double)
660 image->colors);
661 else
662 (void) FormatLocaleFile(file,"%.20g=>%.20gc ",(double)
663 image->total_colors,(double) image->colors);
664 if (image->error.mean_error_per_pixel != 0.0)
665 (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double)
666 (image->error.mean_error_per_pixel+0.5),
667 image->error.normalized_mean_error,
668 image->error.normalized_maximum_error);
669 if (image->extent != 0)
670 {
671 (void) FormatMagickSize(image->extent,MagickTrue,"B",MagickPathExtent,
672 format);
673 (void) FormatLocaleFile(file,"%s ",format);
674 }
675 (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time,
676 (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod(
677 elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time-
678 floor(elapsed_time))));
679 (void) FormatLocaleFile(file,"\n");
680 (void) fflush(file);
681 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
682 }
683 /*
684 Display verbose info about the image.
685 */
686 p=GetVirtualPixels(image,0,0,1,1,exception);
687 ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse;
688 (void) SignatureImage(image,exception);
689 channel_statistics=(ChannelStatistics *) NULL;
690 channel_moments=(ChannelMoments *) NULL;
691 channel_phash=(ChannelPerceptualHash *) NULL;
692 channel_features=(ChannelFeatures *) NULL;
693 depth=0;
694 if (ping == MagickFalse)
695 {
696 depth=GetImageDepth(image,exception);
697 channel_statistics=GetImageStatistics(image,exception);
698 artifact=GetImageArtifact(image,"identify:moments");
699 if (artifact != (const char *) NULL)
700 {
701 channel_moments=GetImageMoments(image,exception);
702 channel_phash=GetImagePerceptualHash(image,exception);
703 }
704 artifact=GetImageArtifact(image,"identify:features");
705 if (artifact != (const char *) NULL)
706 {
707 distance=StringToUnsignedLong(artifact);
708 channel_features=GetImageFeatures(image,distance,exception);
709 }
710 }
711 (void) FormatLocaleFile(file,"Image:\n Filename: %s\n",image->filename);
712 if (*image->magick_filename != '\0')
713 if (LocaleCompare(image->magick_filename,image->filename) != 0)
714 {
715 char
716 filename[MagickPathExtent];
717
718 GetPathComponent(image->magick_filename,TailPath,filename);
719 (void) FormatLocaleFile(file," Base filename: %s\n",filename);
720 }
721 magick_info=GetMagickInfo(image->magick,exception);
722 if ((magick_info == (const MagickInfo *) NULL) ||
723 (GetMagickDescription(magick_info) == (const char *) NULL))
724 (void) FormatLocaleFile(file," Format: %s\n",image->magick);
725 else
726 (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick,
727 GetMagickDescription(magick_info));
728 if ((magick_info != (const MagickInfo *) NULL) &&
729 (GetMagickMimeType(magick_info) != (const char *) NULL))
730 (void) FormatLocaleFile(file," Mime type: %s\n",GetMagickMimeType(
731 magick_info));
732 (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic(
733 MagickClassOptions,(ssize_t) image->storage_class));
734 (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double)
735 image->columns,(double) image->rows,(double) image->tile_offset.x,(double)
736 image->tile_offset.y);
737 if ((image->magick_columns != 0) || (image->magick_rows != 0))
738 if ((image->magick_columns != image->columns) ||
739 (image->magick_rows != image->rows))
740 (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double)
741 image->magick_columns,(double) image->magick_rows);
742 if ((image->resolution.x != 0.0) && (image->resolution.y != 0.0))
743 {
744 (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->resolution.x,
745 image->resolution.y);
746 (void) FormatLocaleFile(file," Print size: %gx%g\n",(double)
747 image->columns/image->resolution.x,(double) image->rows/
748 image->resolution.y);
749 }
750 (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic(
751 MagickResolutionOptions,(ssize_t) image->units));
752 (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic(
753 MagickColorspaceOptions,(ssize_t) colorspace));
754 type=IdentifyImageType(image,exception);
755 (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic(
756 MagickTypeOptions,(ssize_t) type));
757 if (image->type != type)
758 (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic(
759 MagickTypeOptions,(ssize_t) image->type));
760 (void) FormatLocaleFile(file," Endianness: %s\n",CommandOptionToMnemonic(
761 MagickEndianOptions,(ssize_t) image->endian));
762 if (depth != 0)
763 {
764 if (image->depth == depth)
765 (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double)
766 image->depth);
767 else
768 (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double)
769 image->depth,(double) depth);
770 }
771 if (channel_statistics != (ChannelStatistics *) NULL)
772 {
773 /*
774 Detail channel depth and extrema.
775 */
776 (void) FormatLocaleFile(file," Channel depth:\n");
777 switch (colorspace)
778 {
779 case RGBColorspace:
780 case sRGBColorspace:
781 {
782 (void) FormatLocaleFile(file," Red: %.20g-bit\n",(double)
783 channel_statistics[RedPixelChannel].depth);
784 (void) FormatLocaleFile(file," Green: %.20g-bit\n",(double)
785 channel_statistics[GreenPixelChannel].depth);
786 (void) FormatLocaleFile(file," Blue: %.20g-bit\n",(double)
787 channel_statistics[BluePixelChannel].depth);
788 break;
789 }
790 case CMYKColorspace:
791 {
792 (void) FormatLocaleFile(file," Cyan: %.20g-bit\n",(double)
793 channel_statistics[CyanPixelChannel].depth);
794 (void) FormatLocaleFile(file," Magenta: %.20g-bit\n",(double)
795 channel_statistics[MagentaPixelChannel].depth);
796 (void) FormatLocaleFile(file," Yellow: %.20g-bit\n",(double)
797 channel_statistics[YellowPixelChannel].depth);
798 (void) FormatLocaleFile(file," Black: %.20g-bit\n",(double)
799 channel_statistics[BlackPixelChannel].depth);
800 break;
801 }
802 case LinearGRAYColorspace:
803 case GRAYColorspace:
804 {
805 (void) FormatLocaleFile(file," Gray: %.20g-bit\n",(double)
806 channel_statistics[GrayPixelChannel].depth);
807 break;
808 }
809 default:
810 {
811 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
812 (void) FormatLocaleFile(file," Channel %.20g: %.20g-bit\n",
813 (double) i,(double) channel_statistics[i].depth);
814 break;
815 }
816 }
817 if (image->alpha_trait != UndefinedPixelTrait)
818 (void) FormatLocaleFile(file," Alpha: %.20g-bit\n",(double)
819 channel_statistics[AlphaPixelChannel].depth);
820 scale=1.0;
821 if (image->depth <= MAGICKCORE_QUANTUM_DEPTH)
822 scale=(double) (QuantumRange/((size_t) QuantumRange >> ((size_t)
823 MAGICKCORE_QUANTUM_DEPTH-image->depth)));
824 (void) FormatLocaleFile(file," Channel statistics:\n");
825 (void) FormatLocaleFile(file," Pixels: %.20g\n",(double)
826 image->columns*image->rows);
827 switch (colorspace)
828 {
829 case RGBColorspace:
830 case sRGBColorspace:
831 {
832 (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/
833 scale,channel_statistics);
834 (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/
835 scale,channel_statistics);
836 (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/
837 scale,channel_statistics);
838 break;
839 }
840 case CMYKColorspace:
841 {
842 (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/
843 scale,channel_statistics);
844 (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/
845 scale,channel_statistics);
846 (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/
847 scale,channel_statistics);
848 (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/
849 scale,channel_statistics);
850 break;
851 }
852 case LinearGRAYColorspace:
853 case GRAYColorspace:
854 {
855 (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/
856 scale,channel_statistics);
857 break;
858 }
859 default:
860 {
861 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
862 {
863 char
864 channel[MagickPathExtent];
865
866 (void) FormatLocaleString(channel,MagickPathExtent,"Channel %.20g",
867 (double) i);
868 (void) PrintChannelStatistics(file,(PixelChannel) i,channel,1.0/
869 scale,channel_statistics);
870 }
871 break;
872 }
873 }
874 if (image->alpha_trait != UndefinedPixelTrait)
875 (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/scale,
876 channel_statistics);
877 if ((colorspace != LinearGRAYColorspace) && (colorspace != GRAYColorspace))
878 {
879 (void) FormatLocaleFile(file," Image statistics:\n");
880 (void) PrintChannelStatistics(file,CompositePixelChannel,"Overall",
881 1.0/scale,channel_statistics);
882 }
883 channel_statistics=(ChannelStatistics *) RelinquishMagickMemory(
884 channel_statistics);
885 }
886 if (channel_moments != (ChannelMoments *) NULL)
887 {
888 scale=(double) ((1UL << image->depth)-1);
889 (void) FormatLocaleFile(file," Channel moments:\n");
890 switch (colorspace)
891 {
892 case RGBColorspace:
893 case sRGBColorspace:
894 {
895 (void) PrintChannelMoments(file,RedPixelChannel,"Red",scale,
896 channel_moments);
897 (void) PrintChannelMoments(file,GreenPixelChannel,"Green",scale,
898 channel_moments);
899 (void) PrintChannelMoments(file,BluePixelChannel,"Blue",scale,
900 channel_moments);
901 break;
902 }
903 case CMYKColorspace:
904 {
905 (void) PrintChannelMoments(file,CyanPixelChannel,"Cyan",scale,
906 channel_moments);
907 (void) PrintChannelMoments(file,MagentaPixelChannel,"Magenta",scale,
908 channel_moments);
909 (void) PrintChannelMoments(file,YellowPixelChannel,"Yellow",scale,
910 channel_moments);
911 (void) PrintChannelMoments(file,BlackPixelChannel,"Black",scale,
912 channel_moments);
913 break;
914 }
915 case GRAYColorspace:
916 {
917 (void) PrintChannelMoments(file,GrayPixelChannel,"Gray",scale,
918 channel_moments);
919 break;
920 }
921 default:
922 {
923 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
924 {
925 char
926 channel[MagickPathExtent];
927
928 (void) FormatLocaleString(channel,MagickPathExtent,"Channel %.20g",
929 (double) i);
930 (void) PrintChannelMoments(file,(PixelChannel) i,"channel",scale,
931 channel_moments);
932 }
933 break;
934 }
935 }
936 if (image->alpha_trait != UndefinedPixelTrait)
937 (void) PrintChannelMoments(file,AlphaPixelChannel,"Alpha",scale,
938 channel_moments);
939 if (colorspace != GRAYColorspace)
940 {
941 (void) FormatLocaleFile(file," Image moments:\n");
942 (void) PrintChannelMoments(file,CompositePixelChannel,"Overall",scale,
943 channel_moments);
944 }
945 channel_moments=(ChannelMoments *) RelinquishMagickMemory(
946 channel_moments);
947 }
948 if (channel_phash != (ChannelPerceptualHash *) NULL)
949 {
950 (void) PrintChannelPerceptualHash(image,file,channel_phash);
951 channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory(
952 channel_phash);
953 }
954 if (channel_features != (ChannelFeatures *) NULL)
955 {
956 (void) FormatLocaleFile(file," Channel features (horizontal, vertical, "
957 "left and right diagonals, average):\n");
958 switch (colorspace)
959 {
960 case RGBColorspace:
961 case sRGBColorspace:
962 {
963 (void) PrintChannelFeatures(file,RedPixelChannel,"Red",
964 channel_features);
965 (void) PrintChannelFeatures(file,GreenPixelChannel,"Green",
966 channel_features);
967 (void) PrintChannelFeatures(file,BluePixelChannel,"Blue",
968 channel_features);
969 break;
970 }
971 case CMYKColorspace:
972 {
973 (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan",
974 channel_features);
975 (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta",
976 channel_features);
977 (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow",
978 channel_features);
979 (void) PrintChannelFeatures(file,BlackPixelChannel,"Black",
980 channel_features);
981 break;
982 }
983 case GRAYColorspace:
984 {
985 (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray",
986 channel_features);
987 break;
988 }
989 default:
990 {
991 for (i=0; i < (ssize_t) GetPixelChannels(image); i++)
992 {
993 char
994 channel[MagickPathExtent];
995
996 (void) FormatLocaleString(channel,MagickPathExtent,"Channel %.20g",
997 (double) i);
998 (void) PrintChannelFeatures(file,(PixelChannel) i,channel,
999 channel_features);
1000 }
1001 break;
1002 }
1003 }
1004 if (image->alpha_trait != UndefinedPixelTrait)
1005 (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha",
1006 channel_features);
1007 channel_features=(ChannelFeatures *) RelinquishMagickMemory(
1008 channel_features);
1009 }
1010 if (ping == MagickFalse)
1011 {
1012 if (colorspace == CMYKColorspace)
1013 (void) FormatLocaleFile(file," Total ink density: %.*g%%\n",
1014 GetMagickPrecision(),100.0*GetImageTotalInkDensity(image,exception)/
1015 (double) QuantumRange);
1016 x=0;
1017 if (image->alpha_trait != UndefinedPixelTrait)
1018 {
1019 MagickBooleanType
1020 found = MagickFalse;
1021
1022 p=(const Quantum *) NULL;
1023 for (y=0; y < (ssize_t) image->rows; y++)
1024 {
1025 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
1026 if (p == (const Quantum *) NULL)
1027 break;
1028 for (x=0; x < (ssize_t) image->columns; x++)
1029 {
1030 if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha)
1031 {
1032 found=MagickTrue;
1033 break;
1034 }
1035 p+=GetPixelChannels(image);
1036 }
1037 if (found != MagickFalse)
1038 break;
1039 }
1040 if (found != MagickFalse)
1041 {
1042 char
1043 tuple[MagickPathExtent];
1044
1045 PixelInfo
1046 pixel;
1047
1048 GetPixelInfo(image,&pixel);
1049 GetPixelInfoPixel(image,p,&pixel);
1050 (void) QueryColorname(image,&pixel,SVGCompliance,tuple,
1051 exception);
1052 (void) FormatLocaleFile(file," Alpha: %s ",tuple);
1053 GetColorTuple(&pixel,MagickTrue,tuple);
1054 (void) FormatLocaleFile(file," %s\n",tuple);
1055 }
1056 }
1057 if (IsHistogramImage(image,exception) != MagickFalse)
1058 {
1059 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
1060 GetNumberColors(image,(FILE *) NULL,exception));
1061 (void) FormatLocaleFile(file," Histogram:\n");
1062 (void) GetNumberColors(image,file,exception);
1063 }
1064 else
1065 {
1066 artifact=GetImageArtifact(image,"identify:unique-colors");
1067 if (IsStringTrue(artifact) != MagickFalse)
1068 (void) FormatLocaleFile(file," Colors: %.20g\n",(double)
1069 GetNumberColors(image,(FILE *) NULL,exception));
1070 }
1071 }
1072 if (image->storage_class == PseudoClass)
1073 {
1074 (void) FormatLocaleFile(file," Colormap entries: %.20g\n",(double)
1075 image->colors);
1076 (void) FormatLocaleFile(file," Colormap:\n");
1077 if (image->colors <= 1024)
1078 {
1079 char
1080 hex[MagickPathExtent],
1081 tuple[MagickPathExtent];
1082
1083 PixelInfo
1084 pixel;
1085
1086 PixelInfo
1087 *magick_restrict c;
1088
1089 GetPixelInfo(image,&pixel);
1090 c=image->colormap;
1091 for (i=0; i < (ssize_t) image->colors; i++)
1092 {
1093 pixel=(*c);
1094 (void) CopyMagickString(tuple,"(",MagickPathExtent);
1095 ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance,
1096 tuple);
1097 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
1098 ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance,
1099 tuple);
1100 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
1101 ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance,
1102 tuple);
1103 if (pixel.colorspace == CMYKColorspace)
1104 {
1105 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
1106 ConcatenateColorComponent(&pixel,BlackPixelChannel,
1107 X11Compliance,tuple);
1108 }
1109 if (pixel.alpha_trait != UndefinedPixelTrait)
1110 {
1111 (void) ConcatenateMagickString(tuple,",",MagickPathExtent);
1112 ConcatenateColorComponent(&pixel,AlphaPixelChannel,
1113 X11Compliance,tuple);
1114 }
1115 (void) ConcatenateMagickString(tuple,")",MagickPathExtent);
1116 (void) QueryColorname(image,&pixel,SVGCompliance,color,
1117 exception);
1118 GetColorTuple(&pixel,MagickTrue,hex);
1119 (void) FormatLocaleFile(file," %g: %s %s %s\n",(double) i,tuple,
1120 hex,color);
1121 c++;
1122 }
1123 }
1124 }
1125 if (image->error.mean_error_per_pixel != 0.0)
1126 (void) FormatLocaleFile(file," Mean error per pixel: %g\n",
1127 image->error.mean_error_per_pixel);
1128 if (image->error.normalized_mean_error != 0.0)
1129 (void) FormatLocaleFile(file," Normalized mean error: %g\n",
1130 image->error.normalized_mean_error);
1131 if (image->error.normalized_maximum_error != 0.0)
1132 (void) FormatLocaleFile(file," Normalized maximum error: %g\n",
1133 image->error.normalized_maximum_error);
1134 (void) FormatLocaleFile(file," Rendering intent: %s\n",
1135 CommandOptionToMnemonic(MagickIntentOptions,(ssize_t)
1136 image->rendering_intent));
1137 if (image->gamma != 0.0)
1138 (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma);
1139 if ((image->chromaticity.red_primary.x != 0.0) ||
1140 (image->chromaticity.green_primary.x != 0.0) ||
1141 (image->chromaticity.blue_primary.x != 0.0) ||
1142 (image->chromaticity.white_point.x != 0.0))
1143 {
1144 /*
1145 Display image chromaticity.
1146 */
1147 (void) FormatLocaleFile(file," Chromaticity:\n");
1148 (void) FormatLocaleFile(file," red primary: (%g,%g)\n",
1149 image->chromaticity.red_primary.x,image->chromaticity.red_primary.y);
1150 (void) FormatLocaleFile(file," green primary: (%g,%g)\n",
1151 image->chromaticity.green_primary.x,
1152 image->chromaticity.green_primary.y);
1153 (void) FormatLocaleFile(file," blue primary: (%g,%g)\n",
1154 image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y);
1155 (void) FormatLocaleFile(file," white point: (%g,%g)\n",
1156 image->chromaticity.white_point.x,image->chromaticity.white_point.y);
1157 }
1158 if ((image->extract_info.width*image->extract_info.height) != 0)
1159 (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n",
1160 (double) image->extract_info.width,(double) image->extract_info.height,
1161 (double) image->extract_info.x,(double) image->extract_info.y);
1162 (void) QueryColorname(image,&image->matte_color,SVGCompliance,color,
1163 exception);
1164 (void) FormatLocaleFile(file," Matte color: %s\n",color);
1165 (void) QueryColorname(image,&image->background_color,SVGCompliance,color,
1166 exception);
1167 (void) FormatLocaleFile(file," Background color: %s\n",color);
1168 (void) QueryColorname(image,&image->border_color,SVGCompliance,color,
1169 exception);
1170 (void) FormatLocaleFile(file," Border color: %s\n",color);
1171 (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color,
1172 exception);
1173 (void) FormatLocaleFile(file," Transparent color: %s\n",color);
1174 (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic(
1175 MagickInterlaceOptions,(ssize_t) image->interlace));
1176 (void) FormatLocaleFile(file," Intensity: %s\n",CommandOptionToMnemonic(
1177 MagickPixelIntensityOptions,(ssize_t) image->intensity));
1178 (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic(
1179 MagickComposeOptions,(ssize_t) image->compose));
1180 if ((image->page.width != 0) || (image->page.height != 0) ||
1181 (image->page.x != 0) || (image->page.y != 0))
1182 (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n",
1183 (double) image->page.width,(double) image->page.height,(double)
1184 image->page.x,(double) image->page.y);
1185 if ((image->page.x != 0) || (image->page.y != 0))
1186 (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double)
1187 image->page.x,(double) image->page.y);
1188 (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic(
1189 MagickDisposeOptions,(ssize_t) image->dispose));
1190 if (image->delay != 0)
1191 (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay,
1192 (double) image->ticks_per_second);
1193 if (image->iterations != 1)
1194 (void) FormatLocaleFile(file," Iterations: %.20g\n",(double)
1195 image->iterations);
1196 if (image->duration != 0)
1197 (void) FormatLocaleFile(file," Duration: %.20g\n",(double)
1198 image->duration);
1199 if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL))
1200 (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double)
1201 image->scene,(double) GetImageListLength(image));
1202 else
1203 if (image->scene != 0)
1204 (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene);
1205 (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic(
1206 MagickCompressOptions,(ssize_t) image->compression));
1207 if (image->quality != UndefinedCompressionQuality)
1208 (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality);
1209 (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic(
1210 MagickOrientationOptions,(ssize_t) image->orientation));
1211 if (image->montage != (char *) NULL)
1212 (void) FormatLocaleFile(file," Montage: %s\n",image->montage);
1213 if (image->directory != (char *) NULL)
1214 {
1215 Image
1216 *tile;
1217
1218 ImageInfo
1219 *image_info;
1220
1221 char
1222 *d,
1223 *q;
1224
1225 WarningHandler
1226 handler;
1227
1228 /*
1229 Display visual image directory.
1230 */
1231 image_info=AcquireImageInfo();
1232 (void) CloneString(&image_info->size,"64x64");
1233 (void) FormatLocaleFile(file," Directory:\n");
1234 for (d=image->directory; *d != '\0'; d++)
1235 {
1236 q=d;
1237 while ((*q != '\xff') && (*q != '\0') &&
1238 ((size_t) (q-d) < sizeof(image_info->filename)))
1239 q++;
1240 (void) CopyMagickString(image_info->filename,d,(size_t) (q-d+1));
1241 d=q;
1242 (void) FormatLocaleFile(file," %s",image_info->filename);
1243 handler=SetWarningHandler((WarningHandler) NULL);
1244 tile=ReadImage(image_info,exception);
1245 (void) SetWarningHandler(handler);
1246 if (tile == (Image *) NULL)
1247 {
1248 (void) FormatLocaleFile(file,"\n");
1249 continue;
1250 }
1251 (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double)
1252 tile->magick_columns,(double) tile->magick_rows,tile->magick);
1253 (void) SignatureImage(tile,exception);
1254 ResetImagePropertyIterator(tile);
1255 property=GetNextImageProperty(tile);
1256 while (property != (const char *) NULL)
1257 {
1258 (void) FormatLocaleFile(file," %s:\n",property);
1259 value=GetImageProperty(tile,property,exception);
1260 if (value != (const char *) NULL)
1261 (void) FormatLocaleFile(file,"%s\n",value);
1262 property=GetNextImageProperty(tile);
1263 }
1264 tile=DestroyImage(tile);
1265 }
1266 image_info=DestroyImageInfo(image_info);
1267 }
1268 (void) FormatLocaleString(key,MagickPathExtent,"8BIM:1999,2998:#1");
1269 value=GetImageProperty(image,key,exception);
1270 if (value != (const char *) NULL)
1271 {
1272 /*
1273 Display clipping path.
1274 */
1275 (void) FormatLocaleFile(file," Clipping path: ");
1276 if (strlen(value) > 80)
1277 (void) fputc('\n',file);
1278 (void) FormatLocaleFile(file,"%s\n",value);
1279 }
1280 artifact=GetImageArtifact(image,"identify:convex-hull");
1281 if (IsStringTrue(artifact) != MagickFalse)
1282 {
1283 char
1284 *points,
1285 value[MagickPathExtent];
1286
1287 PointInfo
1288 *bounding_box,
1289 *convex_hull;
1290
1291 ssize_t
1292 n;
1293
1294 size_t
1295 number_points;
1296
1297 /*
1298 Display convex hull & minimum bounding box.
1299 */
1300 convex_hull=GetImageConvexHull(image,&number_points,exception);
1301 if (convex_hull != (PointInfo *) NULL)
1302 {
1303 points=AcquireString("");
1304 for (n=0; n < (ssize_t) number_points; n++)
1305 {
1306 (void) FormatLocaleString(value,MagickPathExtent,"%g,%g ",
1307 convex_hull[n].x,convex_hull[n].y);
1308 (void) ConcatenateString(&points,value);
1309 }
1310 convex_hull=(PointInfo *) RelinquishMagickMemory(convex_hull);
1311 (void) FormatLocaleFile(file," Convex hull: ");
1312 (void) FormatLocaleFile(file,"%s\n",points);
1313 points=DestroyString(points);
1314 }
1315 bounding_box=GetImageMinimumBoundingBox(image,&number_points,exception);
1316 if (bounding_box != (PointInfo *) NULL)
1317 {
1318 points=AcquireString("");
1319 for (n=0; n < (ssize_t) number_points; n++)
1320 {
1321 (void) FormatLocaleString(value,MagickPathExtent,"%g,%g ",
1322 bounding_box[n].x,bounding_box[n].y);
1323 (void) ConcatenateString(&points,value);
1324 }
1325 bounding_box=(PointInfo *) RelinquishMagickMemory(bounding_box);
1326 (void) FormatLocaleFile(file," Minimum bounding box: ");
1327 (void) FormatLocaleFile(file,"%s\n",points);
1328 points=DestroyString(points);
1329 }
1330 }
1331 ResetImageProfileIterator(image);
1332 name=GetNextImageProfile(image);
1333 if (name != (char *) NULL)
1334 {
1335 const StringInfo
1336 *profile;
1337
1338 /*
1339 Identify image profiles.
1340 */
1341 (void) FormatLocaleFile(file," Profiles:\n");
1342 while (name != (char *) NULL)
1343 {
1344 profile=GetImageProfile(image,name);
1345 if (profile == (StringInfo *) NULL)
1346 continue;
1347 (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name,
1348 (double) GetStringInfoLength(profile));
1349 if (LocaleCompare(name,"iptc") == 0)
1350 {
1351 char
1352 *attribute,
1353 **attribute_list;
1354
1355 const char
1356 *tag;
1357
1358 long
1359 dataset,
1360 record,
1361 sentinel;
1362
1363 ssize_t
1364 j;
1365
1366 size_t
1367 length,
1368 profile_length;
1369
1370 profile_length=GetStringInfoLength(profile);
1371 for (i=0; i < (ssize_t) profile_length-5; i+=(ssize_t) length)
1372 {
1373 length=1;
1374 sentinel=GetStringInfoDatum(profile)[i++];
1375 if (sentinel != 0x1c)
1376 continue;
1377 dataset=GetStringInfoDatum(profile)[i++];
1378 record=GetStringInfoDatum(profile)[i++];
1379 switch (record)
1380 {
1381 case 5: tag="Image Name"; break;
1382 case 7: tag="Edit Status"; break;
1383 case 10: tag="Priority"; break;
1384 case 15: tag="Category"; break;
1385 case 20: tag="Supplemental Category"; break;
1386 case 22: tag="Fixture Identifier"; break;
1387 case 25: tag="Keyword"; break;
1388 case 30: tag="Release Date"; break;
1389 case 35: tag="Release Time"; break;
1390 case 40: tag="Special Instructions"; break;
1391 case 45: tag="Reference Service"; break;
1392 case 47: tag="Reference Date"; break;
1393 case 50: tag="Reference Number"; break;
1394 case 55: tag="Created Date"; break;
1395 case 60: tag="Created Time"; break;
1396 case 65: tag="Originating Program"; break;
1397 case 70: tag="Program Version"; break;
1398 case 75: tag="Object Cycle"; break;
1399 case 80: tag="Byline"; break;
1400 case 85: tag="Byline Title"; break;
1401 case 90: tag="City"; break;
1402 case 92: tag="Sub-Location"; break;
1403 case 95: tag="Province State"; break;
1404 case 100: tag="Country Code"; break;
1405 case 101: tag="Country"; break;
1406 case 103: tag="Original Transmission Reference"; break;
1407 case 105: tag="Headline"; break;
1408 case 110: tag="Credit"; break;
1409 case 115: tag="Src"; break;
1410 case 116: tag="Copyright String"; break;
1411 case 120: tag="Caption"; break;
1412 case 121: tag="Local Caption"; break;
1413 case 122: tag="Caption Writer"; break;
1414 case 200: tag="Custom Field 1"; break;
1415 case 201: tag="Custom Field 2"; break;
1416 case 202: tag="Custom Field 3"; break;
1417 case 203: tag="Custom Field 4"; break;
1418 case 204: tag="Custom Field 5"; break;
1419 case 205: tag="Custom Field 6"; break;
1420 case 206: tag="Custom Field 7"; break;
1421 case 207: tag="Custom Field 8"; break;
1422 case 208: tag="Custom Field 9"; break;
1423 case 209: tag="Custom Field 10"; break;
1424 case 210: tag="Custom Field 11"; break;
1425 case 211: tag="Custom Field 12"; break;
1426 case 212: tag="Custom Field 13"; break;
1427 case 213: tag="Custom Field 14"; break;
1428 case 214: tag="Custom Field 15"; break;
1429 case 215: tag="Custom Field 16"; break;
1430 case 216: tag="Custom Field 17"; break;
1431 case 217: tag="Custom Field 18"; break;
1432 case 218: tag="Custom Field 19"; break;
1433 case 219: tag="Custom Field 20"; break;
1434 default: tag="unknown"; break;
1435 }
1436 (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag,
1437 (double) dataset,(double) record);
1438 length=(size_t) (GetStringInfoDatum(profile)[i++] << 8);
1439 length|=GetStringInfoDatum(profile)[i++];
1440 length=MagickMin(length,profile_length-i);
1441 attribute=(char *) NULL;
1442 if (~length >= (MagickPathExtent-1))
1443 attribute=(char *) AcquireQuantumMemory(length+MagickPathExtent,
1444 sizeof(*attribute));
1445 if (attribute != (char *) NULL)
1446 {
1447 (void) CopyMagickString(attribute,(char *)
1448 GetStringInfoDatum(profile)+i,length+1);
1449 attribute_list=StringToList(attribute);
1450 if (attribute_list != (char **) NULL)
1451 {
1452 for (j=0; attribute_list[j] != (char *) NULL; j++)
1453 {
1454 (void) fputs(attribute_list[j],file);
1455 (void) fputs("\n",file);
1456 attribute_list[j]=(char *) RelinquishMagickMemory(
1457 attribute_list[j]);
1458 }
1459 attribute_list=(char **) RelinquishMagickMemory(
1460 attribute_list);
1461 }
1462 attribute=DestroyString(attribute);
1463 }
1464 }
1465 }
1466 if (image->debug != MagickFalse)
1467 PrintStringInfo(file,name,profile);
1468 name=GetNextImageProfile(image);
1469 }
1470 }
1471 ResetImagePropertyIterator(image);
1472 property=GetNextImageProperty(image);
1473 if (property != (const char *) NULL)
1474 {
1475 /*
1476 Display image properties.
1477 */
1478 (void) FormatLocaleFile(file," Properties:\n");
1479 while (property != (const char *) NULL)
1480 {
1481 (void) FormatLocaleFile(file," %s: ",property);
1482 value=GetImageProperty(image,property,exception);
1483 if (value != (const char *) NULL)
1484 (void) FormatLocaleFile(file,"%s\n",value);
1485 property=GetNextImageProperty(image);
1486 }
1487 }
1488 ResetImageArtifactIterator(image);
1489 artifact=GetNextImageArtifact(image);
1490 if (artifact != (const char *) NULL)
1491 {
1492 /*
1493 Display image artifacts.
1494 */
1495 (void) FormatLocaleFile(file," Artifacts:\n");
1496 while (artifact != (const char *) NULL)
1497 {
1498 (void) FormatLocaleFile(file," %s: ",artifact);
1499 value=GetImageArtifact(image,artifact);
1500 if (value != (const char *) NULL)
1501 (void) FormatLocaleFile(file,"%s\n",value);
1502 artifact=GetNextImageArtifact(image);
1503 }
1504 }
1505 ResetImageRegistryIterator();
1506 registry=GetNextImageRegistry();
1507 if (registry != (const char *) NULL)
1508 {
1509 /*
1510 Display image registry.
1511 */
1512 (void) FormatLocaleFile(file," Registry:\n");
1513 while (registry != (const char *) NULL)
1514 {
1515 (void) FormatLocaleFile(file," %s: ",registry);
1516 value=(const char *) GetImageRegistry(StringRegistryType,registry,
1517 exception);
1518 if (value != (const char *) NULL)
1519 (void) FormatLocaleFile(file,"%s\n",value);
1520 registry=GetNextImageRegistry();
1521 }
1522 }
1523 (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic(
1524 MagickBooleanOptions,(ssize_t) image->taint));
1525 (void) FormatMagickSize(image->extent,MagickTrue,"B",MagickPathExtent,format);
1526 (void) FormatLocaleFile(file," Filesize: %s\n",format);
1527 (void) FormatMagickSize((MagickSizeType) image->columns*image->rows,
1528 MagickFalse,"P",MagickPathExtent,format);
1529 if (strlen(format) > 1)
1530 format[strlen(format)-1]='\0';
1531 (void) FormatLocaleFile(file," Number pixels: %s\n",format);
1532 if (elapsed_time > MagickEpsilon)
1533 {
1534 (void) FormatMagickSize((MagickSizeType) ((double) image->columns*
1535 image->rows/elapsed_time+0.5),MagickFalse,"P",MagickPathExtent,format);
1536 (void) FormatLocaleFile(file," Pixels per second: %s\n",format);
1537 }
1538 (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time);
1539 (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n",
1540 (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time,
1541 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time))));
1542 (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *)
1543 NULL));
1544 (void) fflush(file);
1545 return(ferror(file) != 0 ? MagickFalse : MagickTrue);
1546 }
1547