cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 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 | % 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 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 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/utility.h" |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 95 | #include "MagickCore/utility-private.h" |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 96 | #include "MagickCore/version.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 97 | #if defined(MAGICKCORE_LCMS_DELEGATE) |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 98 | #if defined(MAGICKCORE_HAVE_LCMS_LCMS2_H) |
| 99 | #include <lcms/lcms2.h> |
| 100 | #elif defined(MAGICKCORE_HAVE_LCMS2_H) |
| 101 | #include "lcms2.h" |
| 102 | #elif defined(MAGICKCORE_HAVE_LCMS_LCMS_H) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 103 | #include <lcms/lcms.h> |
| 104 | #else |
| 105 | #include "lcms.h" |
| 106 | #endif |
| 107 | #endif |
| 108 | |
| 109 | /* |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 110 | Define declarations. |
| 111 | */ |
| 112 | #if defined(MAGICKCORE_LCMS_DELEGATE) |
| 113 | #if defined(LCMS_VERSION) && (LCMS_VERSION < 2000) |
| 114 | #define cmsUInt32Number DWORD |
| 115 | #endif |
| 116 | #endif |
| 117 | |
| 118 | /* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 119 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 120 | % % |
| 121 | % % |
| 122 | % % |
| 123 | % I d e n t i f y I m a g e % |
| 124 | % % |
| 125 | % % |
| 126 | % % |
| 127 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 128 | % |
| 129 | % IdentifyImage() identifies an image by printing its attributes to the file. |
| 130 | % Attributes include the image width, height, size, and others. |
| 131 | % |
| 132 | % The format of the IdentifyImage method is: |
| 133 | % |
| 134 | % MagickBooleanType IdentifyImage(Image *image,FILE *file, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 135 | % const MagickBooleanType verbose,ExceptionInfo *exception) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 136 | % |
| 137 | % A description of each parameter follows: |
| 138 | % |
| 139 | % o image: the image. |
| 140 | % |
| 141 | % o file: the file, typically stdout. |
| 142 | % |
| 143 | % o verbose: A value other than zero prints more detailed information |
| 144 | % about the image. |
| 145 | % |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 146 | % o exception: return any errors or warnings in this structure. |
| 147 | % |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 148 | */ |
| 149 | |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 150 | static ssize_t PrintChannelFeatures(FILE *file,const PixelChannel channel, |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 151 | const char *name,const ChannelFeatures *channel_features) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 152 | { |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 153 | #define PrintFeature(feature) \ |
| 154 | GetMagickPrecision(),(feature)[0], \ |
| 155 | GetMagickPrecision(),(feature)[1], \ |
| 156 | GetMagickPrecision(),(feature)[2], \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 157 | GetMagickPrecision(),(feature)[3], \ |
| 158 | GetMagickPrecision(),((feature)[0]+(feature)[1]+(feature)[2]+(feature)[3])/4.0 \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 159 | |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 160 | #define FeaturesFormat " %s:\n" \ |
cristy | cdf8e1b | 2010-01-28 01:52:33 +0000 | [diff] [blame] | 161 | " Angular Second Moment:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 162 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | cdf8e1b | 2010-01-28 01:52:33 +0000 | [diff] [blame] | 163 | " Contrast:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 164 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | cdf8e1b | 2010-01-28 01:52:33 +0000 | [diff] [blame] | 165 | " Correlation:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 166 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 167 | " Sum of Squares: Variance:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 168 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | cf5e649 | 2010-01-28 02:45:28 +0000 | [diff] [blame] | 169 | " Inverse Difference Moment:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 170 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 171 | " Sum Average:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 172 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 173 | " Sum Variance:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 174 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 175 | " Sum Entropy:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 176 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 177 | " Entropy:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 178 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 179 | " Difference Variance:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 180 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e0e19dc | 2010-01-29 02:13:08 +0000 | [diff] [blame] | 181 | " Difference Entropy:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 182 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e0e19dc | 2010-01-29 02:13:08 +0000 | [diff] [blame] | 183 | " Information Measure of Correlation 1:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 184 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e0e19dc | 2010-01-29 02:13:08 +0000 | [diff] [blame] | 185 | " Information Measure of Correlation 2:\n" \ |
cristy | e0acabf | 2010-01-30 00:52:38 +0000 | [diff] [blame] | 186 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" \ |
cristy | e0e19dc | 2010-01-29 02:13:08 +0000 | [diff] [blame] | 187 | " Maximum Correlation Coefficient:\n" \ |
cristy | c3ec0d4 | 2010-04-07 01:18:08 +0000 | [diff] [blame] | 188 | " %.*g, %.*g, %.*g, %.*g, %.*g\n" |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 189 | |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 190 | ssize_t |
| 191 | n; |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 192 | |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 193 | n=FormatLocaleFile(file,FeaturesFormat,name, |
cristy | e189779 | 2010-01-29 02:05:50 +0000 | [diff] [blame] | 194 | PrintFeature(channel_features[channel].angular_second_moment), |
| 195 | PrintFeature(channel_features[channel].contrast), |
| 196 | PrintFeature(channel_features[channel].correlation), |
| 197 | PrintFeature(channel_features[channel].variance_sum_of_squares), |
| 198 | PrintFeature(channel_features[channel].inverse_difference_moment), |
| 199 | PrintFeature(channel_features[channel].sum_average), |
| 200 | PrintFeature(channel_features[channel].sum_variance), |
| 201 | PrintFeature(channel_features[channel].sum_entropy), |
| 202 | PrintFeature(channel_features[channel].entropy), |
cristy | e0e19dc | 2010-01-29 02:13:08 +0000 | [diff] [blame] | 203 | PrintFeature(channel_features[channel].difference_variance), |
| 204 | PrintFeature(channel_features[channel].difference_entropy), |
| 205 | PrintFeature(channel_features[channel].measure_of_correlation_1), |
| 206 | PrintFeature(channel_features[channel].measure_of_correlation_2), |
| 207 | PrintFeature(channel_features[channel].maximum_correlation_coefficient)); |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 208 | return(n); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 209 | } |
| 210 | |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 211 | static ssize_t PrintChannelStatistics(FILE *file,const PixelChannel channel, |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 212 | const char *name,const double scale, |
| 213 | const ChannelStatistics *channel_statistics) |
| 214 | { |
| 215 | #define StatisticsFormat " %s:\n min: " QuantumFormat \ |
cristy | e7f5109 | 2010-01-17 00:39:37 +0000 | [diff] [blame] | 216 | " (%g)\n max: " QuantumFormat " (%g)\n" \ |
| 217 | " mean: %g (%g)\n standard deviation: %g (%g)\n" \ |
| 218 | " kurtosis: %g\n skewness: %g\n" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 219 | |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 220 | ssize_t |
| 221 | n; |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 222 | |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 223 | n=FormatLocaleFile(file,StatisticsFormat,name,ClampToQuantum(scale* |
cristy | a45da3b | 2010-03-31 02:06:45 +0000 | [diff] [blame] | 224 | channel_statistics[channel].minima),channel_statistics[channel].minima/ |
| 225 | (double) QuantumRange,ClampToQuantum(scale* |
| 226 | channel_statistics[channel].maxima),channel_statistics[channel].maxima/ |
| 227 | (double) QuantumRange,scale*channel_statistics[channel].mean, |
| 228 | channel_statistics[channel].mean/(double) QuantumRange,scale* |
| 229 | channel_statistics[channel].standard_deviation, |
cristy | 75b5a25 | 2010-02-26 02:40:46 +0000 | [diff] [blame] | 230 | channel_statistics[channel].standard_deviation/(double) QuantumRange, |
| 231 | channel_statistics[channel].kurtosis,channel_statistics[channel].skewness); |
cristy | 20ec759 | 2011-05-29 01:28:05 +0000 | [diff] [blame] | 232 | return(n); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 236 | const MagickBooleanType verbose,ExceptionInfo *exception) |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 237 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 238 | char |
| 239 | color[MaxTextExtent], |
| 240 | format[MaxTextExtent], |
| 241 | key[MaxTextExtent]; |
| 242 | |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 243 | ChannelFeatures |
| 244 | *channel_features; |
| 245 | |
| 246 | ChannelStatistics |
| 247 | *channel_statistics; |
| 248 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 249 | ColorspaceType |
| 250 | colorspace; |
| 251 | |
| 252 | const char |
| 253 | *artifact, |
| 254 | *name, |
| 255 | *property, |
| 256 | *registry, |
| 257 | *value; |
| 258 | |
| 259 | const MagickInfo |
| 260 | *magick_info; |
| 261 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 262 | double |
| 263 | elapsed_time, |
| 264 | user_time; |
| 265 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 266 | ImageType |
| 267 | type; |
| 268 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 269 | MagickBooleanType |
| 270 | ping; |
| 271 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 272 | register const Quantum |
| 273 | *p; |
| 274 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 275 | register ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 276 | i, |
| 277 | x; |
| 278 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 279 | size_t |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 280 | distance, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 281 | scale; |
| 282 | |
cristy | 9d314ff | 2011-03-09 01:30:28 +0000 | [diff] [blame] | 283 | ssize_t |
| 284 | y; |
| 285 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 286 | assert(image != (Image *) NULL); |
| 287 | assert(image->signature == MagickSignature); |
| 288 | if (image->debug != MagickFalse) |
| 289 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 290 | if (file == (FILE *) NULL) |
| 291 | file=stdout; |
| 292 | *format='\0'; |
| 293 | elapsed_time=GetElapsedTime(&image->timer); |
| 294 | user_time=GetUserTime(&image->timer); |
| 295 | GetTimerInfo(&image->timer); |
| 296 | if (verbose == MagickFalse) |
| 297 | { |
| 298 | /* |
| 299 | Display summary info about the image. |
| 300 | */ |
| 301 | if (*image->magick_filename != '\0') |
| 302 | if (LocaleCompare(image->magick_filename,image->filename) != 0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 303 | (void) FormatLocaleFile(file,"%s=>",image->magick_filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 304 | if ((GetPreviousImageInList(image) == (Image *) NULL) && |
cristy | 81b8ce5 | 2010-02-05 01:53:17 +0000 | [diff] [blame] | 305 | (GetNextImageInList(image) == (Image *) NULL) && |
| 306 | (image->scene == 0)) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 307 | (void) FormatLocaleFile(file,"%s ",image->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 308 | else |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 309 | (void) FormatLocaleFile(file,"%s[%.20g] ",image->filename,(double) |
| 310 | image->scene); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 311 | (void) FormatLocaleFile(file,"%s ",image->magick); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 312 | if ((image->magick_columns != 0) || (image->magick_rows != 0)) |
| 313 | if ((image->magick_columns != image->columns) || |
| 314 | (image->magick_rows != image->rows)) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 315 | (void) FormatLocaleFile(file,"%.20gx%.20g=>",(double) |
| 316 | image->magick_columns,(double) image->magick_rows); |
| 317 | (void) FormatLocaleFile(file,"%.20gx%.20g ",(double) image->columns, |
| 318 | (double) image->rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 319 | if ((image->page.width != 0) || (image->page.height != 0) || |
| 320 | (image->page.x != 0) || (image->page.y != 0)) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 321 | (void) FormatLocaleFile(file,"%.20gx%.20g%+.20g%+.20g ",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 322 | image->page.width,(double) image->page.height,(double) image->page.x, |
| 323 | (double) image->page.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 324 | (void) FormatLocaleFile(file,"%.20g-bit ",(double) image->depth); |
cristy | 5f1c1ff | 2010-12-23 21:38:06 +0000 | [diff] [blame] | 325 | if (image->type != UndefinedType) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 326 | (void) FormatLocaleFile(file,"%s ",CommandOptionToMnemonic( |
| 327 | MagickTypeOptions,(ssize_t) image->type)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 328 | if (image->storage_class == DirectClass) |
| 329 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 330 | (void) FormatLocaleFile(file,"DirectClass "); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 331 | if (image->total_colors != 0) |
| 332 | { |
cristy | b9080c9 | 2009-12-01 20:13:26 +0000 | [diff] [blame] | 333 | (void) FormatMagickSize(image->total_colors,MagickFalse,format); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 334 | (void) FormatLocaleFile(file,"%s ",format); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 335 | } |
| 336 | } |
| 337 | else |
| 338 | if (image->total_colors <= image->colors) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 339 | (void) FormatLocaleFile(file,"PseudoClass %.20gc ",(double) |
| 340 | image->colors); |
cristy | f2faecf | 2010-05-28 19:19:36 +0000 | [diff] [blame] | 341 | else |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 342 | (void) FormatLocaleFile(file,"PseudoClass %.20g=>%.20gc ",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 343 | image->total_colors,(double) image->colors); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 344 | if (image->error.mean_error_per_pixel != 0.0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 345 | (void) FormatLocaleFile(file,"%.20g/%f/%fdb ",(double) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 346 | (image->error.mean_error_per_pixel+0.5), |
| 347 | image->error.normalized_mean_error, |
| 348 | image->error.normalized_maximum_error); |
| 349 | if (GetBlobSize(image) != 0) |
| 350 | { |
cristy | b9080c9 | 2009-12-01 20:13:26 +0000 | [diff] [blame] | 351 | (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 352 | (void) FormatLocaleFile(file,"%s ",format); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 353 | } |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 354 | (void) FormatLocaleFile(file,"%0.3fu %lu:%02lu.%03lu",user_time, |
| 355 | (unsigned long) (elapsed_time/60.0),(unsigned long) floor(fmod( |
| 356 | elapsed_time,60.0)),(unsigned long) (1000.0*(elapsed_time- |
| 357 | floor(elapsed_time)))); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 358 | (void) FormatLocaleFile(file,"\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 359 | (void) fflush(file); |
| 360 | return(ferror(file) != 0 ? MagickFalse : MagickTrue); |
| 361 | } |
| 362 | /* |
| 363 | Display verbose info about the image. |
| 364 | */ |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 365 | p=GetVirtualPixels(image,0,0,1,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 366 | ping=p == (const Quantum *) NULL ? MagickTrue : MagickFalse; |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 367 | type=GetImageType(image,exception); |
cristy | 018f07f | 2011-09-04 21:15:19 +0000 | [diff] [blame] | 368 | (void) SignatureImage(image,exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 369 | (void) FormatLocaleFile(file,"Image: %s\n",image->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 370 | if (*image->magick_filename != '\0') |
| 371 | if (LocaleCompare(image->magick_filename,image->filename) != 0) |
| 372 | { |
| 373 | char |
| 374 | filename[MaxTextExtent]; |
| 375 | |
| 376 | GetPathComponent(image->magick_filename,TailPath,filename); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 377 | (void) FormatLocaleFile(file," Base filename: %s\n",filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 378 | } |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 379 | magick_info=GetMagickInfo(image->magick,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 380 | if ((magick_info == (const MagickInfo *) NULL) || |
| 381 | (*GetMagickDescription(magick_info) == '\0')) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 382 | (void) FormatLocaleFile(file," Format: %s\n",image->magick); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 383 | else |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 384 | (void) FormatLocaleFile(file," Format: %s (%s)\n",image->magick, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 385 | GetMagickDescription(magick_info)); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 386 | (void) FormatLocaleFile(file," Class: %s\n",CommandOptionToMnemonic( |
| 387 | MagickClassOptions,(ssize_t) image->storage_class)); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 388 | (void) FormatLocaleFile(file," Geometry: %.20gx%.20g%+.20g%+.20g\n",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 389 | image->columns,(double) image->rows,(double) image->tile_offset.x,(double) |
| 390 | image->tile_offset.y); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 391 | if ((image->magick_columns != 0) || (image->magick_rows != 0)) |
| 392 | if ((image->magick_columns != image->columns) || |
| 393 | (image->magick_rows != image->rows)) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 394 | (void) FormatLocaleFile(file," Base geometry: %.20gx%.20g\n",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 395 | image->magick_columns,(double) image->magick_rows); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 396 | if ((image->x_resolution != 0.0) && (image->y_resolution != 0.0)) |
| 397 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 398 | (void) FormatLocaleFile(file," Resolution: %gx%g\n",image->x_resolution, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 399 | image->y_resolution); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 400 | (void) FormatLocaleFile(file," Print size: %gx%g\n",(double) |
| 401 | image->columns/image->x_resolution,(double) image->rows/ |
| 402 | image->y_resolution); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 403 | } |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 404 | (void) FormatLocaleFile(file," Units: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 405 | MagickResolutionOptions,(ssize_t) image->units)); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 406 | (void) FormatLocaleFile(file," Type: %s\n",CommandOptionToMnemonic( |
| 407 | MagickTypeOptions,(ssize_t) type)); |
cristy | 5f1c1ff | 2010-12-23 21:38:06 +0000 | [diff] [blame] | 408 | if (image->type != UndefinedType) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 409 | (void) FormatLocaleFile(file," Base type: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 410 | MagickTypeOptions,(ssize_t) image->type)); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 411 | (void) FormatLocaleFile(file," Endianess: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 412 | MagickEndianOptions,(ssize_t) image->endian)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 413 | /* |
| 414 | Detail channel depth and extrema. |
| 415 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 416 | (void) FormatLocaleFile(file," Colorspace: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 417 | MagickColorspaceOptions,(ssize_t) image->colorspace)); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 418 | channel_statistics=(ChannelStatistics *) NULL; |
cristy | 15a8878 | 2010-01-31 23:24:49 +0000 | [diff] [blame] | 419 | channel_features=(ChannelFeatures *) NULL; |
| 420 | colorspace=image->colorspace; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 421 | if (ping == MagickFalse) |
| 422 | { |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 423 | size_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 424 | depth; |
| 425 | |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 426 | channel_statistics=GetImageStatistics(image,exception); |
cristy | 15a8878 | 2010-01-31 23:24:49 +0000 | [diff] [blame] | 427 | artifact=GetImageArtifact(image,"identify:features"); |
| 428 | if (artifact != (const char *) NULL) |
| 429 | { |
| 430 | distance=StringToUnsignedLong(artifact); |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 431 | channel_features=GetImageFeatures(image,distance,exception); |
cristy | 15a8878 | 2010-01-31 23:24:49 +0000 | [diff] [blame] | 432 | } |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 433 | depth=GetImageDepth(image,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 434 | if (image->depth == depth) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 435 | (void) FormatLocaleFile(file," Depth: %.20g-bit\n",(double) |
| 436 | image->depth); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 437 | else |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 438 | (void) FormatLocaleFile(file," Depth: %.20g/%.20g-bit\n",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 439 | image->depth,(double) depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 440 | (void) FormatLocaleFile(file," Channel depth:\n"); |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 441 | if (IsImageGray(image,exception) != MagickFalse) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 442 | colorspace=GRAYColorspace; |
| 443 | switch (colorspace) |
| 444 | { |
| 445 | case RGBColorspace: |
| 446 | default: |
| 447 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 448 | (void) FormatLocaleFile(file," red: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 449 | channel_statistics[RedPixelChannel].depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 450 | (void) FormatLocaleFile(file," green: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 451 | channel_statistics[GreenPixelChannel].depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 452 | (void) FormatLocaleFile(file," blue: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 453 | channel_statistics[BluePixelChannel].depth); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 454 | break; |
| 455 | } |
| 456 | case CMYKColorspace: |
| 457 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 458 | (void) FormatLocaleFile(file," cyan: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 459 | channel_statistics[CyanPixelChannel].depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 460 | (void) FormatLocaleFile(file," magenta: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 461 | channel_statistics[MagentaPixelChannel].depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 462 | (void) FormatLocaleFile(file," yellow: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 463 | channel_statistics[YellowPixelChannel].depth); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 464 | (void) FormatLocaleFile(file," black: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 465 | channel_statistics[BlackPixelChannel].depth); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 466 | break; |
| 467 | } |
| 468 | case GRAYColorspace: |
| 469 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 470 | (void) FormatLocaleFile(file," gray: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 471 | channel_statistics[GrayPixelChannel].depth); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 472 | break; |
| 473 | } |
| 474 | } |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 475 | if (image->matte != MagickFalse) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 476 | (void) FormatLocaleFile(file," alpha: %.20g-bit\n",(double) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 477 | channel_statistics[AlphaPixelChannel].depth); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 478 | scale=1; |
| 479 | if (image->depth <= MAGICKCORE_QUANTUM_DEPTH) |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 480 | scale=QuantumRange/((size_t) QuantumRange >> ((size_t) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 481 | MAGICKCORE_QUANTUM_DEPTH-image->depth)); |
cristy | 15a8878 | 2010-01-31 23:24:49 +0000 | [diff] [blame] | 482 | } |
| 483 | if (channel_statistics != (ChannelStatistics *) NULL) |
| 484 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 485 | (void) FormatLocaleFile(file," Channel statistics:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 486 | switch (colorspace) |
| 487 | { |
| 488 | case RGBColorspace: |
| 489 | default: |
| 490 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 491 | (void) PrintChannelStatistics(file,RedPixelChannel,"Red",1.0/ |
| 492 | scale,channel_statistics); |
| 493 | (void) PrintChannelStatistics(file,GreenPixelChannel,"Green",1.0/ |
| 494 | scale,channel_statistics); |
| 495 | (void) PrintChannelStatistics(file,BluePixelChannel,"Blue",1.0/ |
| 496 | scale,channel_statistics); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 497 | break; |
| 498 | } |
| 499 | case CMYKColorspace: |
| 500 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 501 | (void) PrintChannelStatistics(file,CyanPixelChannel,"Cyan",1.0/ |
| 502 | scale,channel_statistics); |
| 503 | (void) PrintChannelStatistics(file,MagentaPixelChannel,"Magenta",1.0/ |
| 504 | scale,channel_statistics); |
| 505 | (void) PrintChannelStatistics(file,YellowPixelChannel,"Yellow",1.0/ |
| 506 | scale,channel_statistics); |
| 507 | (void) PrintChannelStatistics(file,BlackPixelChannel,"Black",1.0/ |
| 508 | scale,channel_statistics); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 509 | break; |
| 510 | } |
| 511 | case GRAYColorspace: |
| 512 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 513 | (void) PrintChannelStatistics(file,GrayPixelChannel,"Gray",1.0/ |
| 514 | scale,channel_statistics); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 515 | break; |
| 516 | } |
| 517 | } |
| 518 | if (image->matte != MagickFalse) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 519 | (void) PrintChannelStatistics(file,AlphaPixelChannel,"Alpha",1.0/ |
| 520 | scale,channel_statistics); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 521 | if (colorspace != GRAYColorspace) |
| 522 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 523 | (void) FormatLocaleFile(file," Image statistics:\n"); |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 524 | (void) PrintChannelStatistics(file,MaxPixelChannels,"Overall", |
| 525 | 1.0/scale,channel_statistics); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 526 | } |
| 527 | channel_statistics=(ChannelStatistics *) RelinquishMagickMemory( |
| 528 | channel_statistics); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 529 | } |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 530 | if (channel_features != (ChannelFeatures *) NULL) |
| 531 | { |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 532 | (void) FormatLocaleFile(file," Channel features (horizontal, vertical, " |
| 533 | "left and right diagonals, average):\n"); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 534 | switch (colorspace) |
| 535 | { |
| 536 | case RGBColorspace: |
| 537 | default: |
cristy | 549a37e | 2010-01-26 15:24:15 +0000 | [diff] [blame] | 538 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 539 | (void) PrintChannelFeatures(file,RedPixelChannel,"Red", |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 540 | channel_features); |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 541 | (void) PrintChannelFeatures(file,GreenPixelChannel,"Green", |
| 542 | channel_features); |
| 543 | (void) PrintChannelFeatures(file,BluePixelChannel,"Blue", |
| 544 | channel_features); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 545 | break; |
| 546 | } |
| 547 | case CMYKColorspace: |
| 548 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 549 | (void) PrintChannelFeatures(file,CyanPixelChannel,"Cyan", |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 550 | channel_features); |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 551 | (void) PrintChannelFeatures(file,MagentaPixelChannel,"Magenta", |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 552 | channel_features); |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 553 | (void) PrintChannelFeatures(file,YellowPixelChannel,"Yellow", |
| 554 | channel_features); |
| 555 | (void) PrintChannelFeatures(file,BlackPixelChannel,"Black", |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 556 | channel_features); |
| 557 | break; |
| 558 | } |
| 559 | case GRAYColorspace: |
| 560 | { |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 561 | (void) PrintChannelFeatures(file,GrayPixelChannel,"Gray", |
| 562 | channel_features); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 563 | break; |
| 564 | } |
| 565 | } |
| 566 | if (image->matte != MagickFalse) |
cristy | 95a072b | 2011-10-13 18:03:11 +0000 | [diff] [blame] | 567 | (void) PrintChannelFeatures(file,AlphaPixelChannel,"Alpha", |
| 568 | channel_features); |
cristy | bd82207 | 2010-01-27 00:30:00 +0000 | [diff] [blame] | 569 | channel_features=(ChannelFeatures *) RelinquishMagickMemory( |
| 570 | channel_features); |
| 571 | } |
| 572 | if (ping == MagickFalse) |
| 573 | { |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 574 | if (image->colorspace == CMYKColorspace) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 575 | (void) FormatLocaleFile(file," Total ink density: %.0f%%\n",100.0* |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 576 | GetImageTotalInkDensity(image)/(double) QuantumRange); |
| 577 | x=0; |
| 578 | if (image->matte != MagickFalse) |
| 579 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 580 | register const Quantum |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 581 | *p; |
| 582 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 583 | p=(const Quantum *) NULL; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 584 | for (y=0; y < (ssize_t) image->rows; y++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 585 | { |
| 586 | p=GetVirtualPixels(image,0,y,image->columns,1,exception); |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 587 | if (p == (const Quantum *) NULL) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 588 | break; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 589 | for (x=0; x < (ssize_t) image->columns; x++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 590 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 591 | if (GetPixelAlpha(image,p) == (Quantum) TransparentAlpha) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 592 | break; |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 593 | p+=GetPixelChannels(image); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 594 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 595 | if (x < (ssize_t) image->columns) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 596 | break; |
| 597 | } |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 598 | if ((x < (ssize_t) image->columns) || (y < (ssize_t) image->rows)) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 599 | { |
| 600 | char |
| 601 | tuple[MaxTextExtent]; |
| 602 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 603 | PixelInfo |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 604 | pixel; |
| 605 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 606 | GetPixelInfo(image,&pixel); |
| 607 | SetPixelInfo(image,p,&pixel); |
cristy | 269c941 | 2011-10-13 23:41:15 +0000 | [diff] [blame] | 608 | (void) QueryColorname(image,&pixel,SVGCompliance,tuple, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 609 | exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 610 | (void) FormatLocaleFile(file," Alpha: %s ",tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 611 | GetColorTuple(&pixel,MagickTrue,tuple); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 612 | (void) FormatLocaleFile(file," %s\n",tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 613 | } |
| 614 | } |
cristy | 83fae87 | 2010-04-22 15:04:16 +0000 | [diff] [blame] | 615 | artifact=GetImageArtifact(image,"identify:unique-colors"); |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 616 | if (IsHistogramImage(image,exception) != MagickFalse) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 617 | { |
cristy | 4c96756 | 2011-06-16 01:46:57 +0000 | [diff] [blame] | 618 | (void) FormatLocaleFile(file," Colors: %.20g\n",(double) |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 619 | GetNumberColors(image,(FILE *) NULL,exception)); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 620 | (void) FormatLocaleFile(file," Histogram:\n"); |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 621 | (void) GetNumberColors(image,file,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 622 | } |
cristy | 4c96756 | 2011-06-16 01:46:57 +0000 | [diff] [blame] | 623 | else |
| 624 | if ((artifact != (const char *) NULL) && |
| 625 | (IsMagickTrue(artifact) != MagickFalse)) |
| 626 | (void) FormatLocaleFile(file," Colors: %.20g\n",(double) |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 627 | GetNumberColors(image,(FILE *) NULL,exception)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 628 | } |
| 629 | if (image->storage_class == PseudoClass) |
| 630 | { |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 631 | (void) FormatLocaleFile(file," Colormap: %.20g\n",(double) |
| 632 | image->colors); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 633 | if (image->colors <= 1024) |
| 634 | { |
| 635 | char |
| 636 | color[MaxTextExtent], |
| 637 | hex[MaxTextExtent], |
| 638 | tuple[MaxTextExtent]; |
| 639 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 640 | PixelInfo |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 641 | pixel; |
| 642 | |
cristy | 101ab70 | 2011-10-13 13:06:32 +0000 | [diff] [blame] | 643 | register PixelInfo |
cristy | c47d1f8 | 2009-11-26 01:44:43 +0000 | [diff] [blame] | 644 | *restrict p; |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 645 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 646 | GetPixelInfo(image,&pixel); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 647 | p=image->colormap; |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 648 | for (i=0; i < (ssize_t) image->colors; i++) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 649 | { |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 650 | SetPixelInfoPacket(image,p,&pixel); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 651 | (void) CopyMagickString(tuple,"(",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 652 | ConcatenateColorComponent(&pixel,RedPixelChannel,X11Compliance, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 653 | tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 654 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 655 | ConcatenateColorComponent(&pixel,GreenPixelChannel,X11Compliance, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 656 | tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 657 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 658 | ConcatenateColorComponent(&pixel,BluePixelChannel,X11Compliance, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 659 | tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 660 | if (pixel.colorspace == CMYKColorspace) |
| 661 | { |
| 662 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 663 | ConcatenateColorComponent(&pixel,BlackPixelChannel, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 664 | X11Compliance,tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 665 | } |
| 666 | if (pixel.matte != MagickFalse) |
| 667 | { |
| 668 | (void) ConcatenateMagickString(tuple,",",MaxTextExtent); |
cristy | ed23157 | 2011-07-14 02:18:59 +0000 | [diff] [blame] | 669 | ConcatenateColorComponent(&pixel,AlphaPixelChannel, |
cristy | fa806a7 | 2011-07-04 02:06:13 +0000 | [diff] [blame] | 670 | X11Compliance,tuple); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 671 | } |
| 672 | (void) ConcatenateMagickString(tuple,")",MaxTextExtent); |
cristy | 269c941 | 2011-10-13 23:41:15 +0000 | [diff] [blame] | 673 | (void) QueryColorname(image,&pixel,SVGCompliance,color, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 674 | exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 675 | GetColorTuple(&pixel,MagickTrue,hex); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 676 | (void) FormatLocaleFile(file," %8ld: %s %s %s\n",(long) i,tuple, |
| 677 | hex,color); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 678 | p++; |
| 679 | } |
| 680 | } |
| 681 | } |
| 682 | if (image->error.mean_error_per_pixel != 0.0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 683 | (void) FormatLocaleFile(file," Mean error per pixel: %g\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 684 | image->error.mean_error_per_pixel); |
| 685 | if (image->error.normalized_mean_error != 0.0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 686 | (void) FormatLocaleFile(file," Normalized mean error: %g\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 687 | image->error.normalized_mean_error); |
| 688 | if (image->error.normalized_maximum_error != 0.0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 689 | (void) FormatLocaleFile(file," Normalized maximum error: %g\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 690 | image->error.normalized_maximum_error); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 691 | (void) FormatLocaleFile(file," Rendering intent: %s\n", |
| 692 | CommandOptionToMnemonic(MagickIntentOptions,(ssize_t) |
| 693 | image->rendering_intent)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 694 | if (image->gamma != 0.0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 695 | (void) FormatLocaleFile(file," Gamma: %g\n",image->gamma); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 696 | if ((image->chromaticity.red_primary.x != 0.0) || |
| 697 | (image->chromaticity.green_primary.x != 0.0) || |
| 698 | (image->chromaticity.blue_primary.x != 0.0) || |
| 699 | (image->chromaticity.white_point.x != 0.0)) |
| 700 | { |
| 701 | /* |
| 702 | Display image chromaticity. |
| 703 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 704 | (void) FormatLocaleFile(file," Chromaticity:\n"); |
| 705 | (void) FormatLocaleFile(file," red primary: (%g,%g)\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 706 | image->chromaticity.red_primary.x,image->chromaticity.red_primary.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 707 | (void) FormatLocaleFile(file," green primary: (%g,%g)\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 708 | image->chromaticity.green_primary.x, |
| 709 | image->chromaticity.green_primary.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 710 | (void) FormatLocaleFile(file," blue primary: (%g,%g)\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 711 | image->chromaticity.blue_primary.x,image->chromaticity.blue_primary.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 712 | (void) FormatLocaleFile(file," white point: (%g,%g)\n", |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 713 | image->chromaticity.white_point.x,image->chromaticity.white_point.y); |
| 714 | } |
| 715 | if ((image->extract_info.width*image->extract_info.height) != 0) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 716 | (void) FormatLocaleFile(file," Tile geometry: %.20gx%.20g%+.20g%+.20g\n", |
| 717 | (double) image->extract_info.width,(double) image->extract_info.height, |
| 718 | (double) image->extract_info.x,(double) image->extract_info.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 719 | (void) FormatLocaleFile(file," Interlace: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 720 | MagickInterlaceOptions,(ssize_t) image->interlace)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 721 | (void) QueryColorname(image,&image->background_color,SVGCompliance,color, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 722 | exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 723 | (void) FormatLocaleFile(file," Background color: %s\n",color); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 724 | (void) QueryColorname(image,&image->border_color,SVGCompliance,color, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 725 | exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 726 | (void) FormatLocaleFile(file," Border color: %s\n",color); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 727 | (void) QueryColorname(image,&image->matte_color,SVGCompliance,color, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 728 | exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 729 | (void) FormatLocaleFile(file," Matte color: %s\n",color); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 730 | (void) QueryColorname(image,&image->transparent_color,SVGCompliance,color, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 731 | exception); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 732 | (void) FormatLocaleFile(file," Transparent color: %s\n",color); |
| 733 | (void) FormatLocaleFile(file," Compose: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 734 | MagickComposeOptions,(ssize_t) image->compose)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 735 | if ((image->page.width != 0) || (image->page.height != 0) || |
| 736 | (image->page.x != 0) || (image->page.y != 0)) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 737 | (void) FormatLocaleFile(file," Page geometry: %.20gx%.20g%+.20g%+.20g\n", |
| 738 | (double) image->page.width,(double) image->page.height,(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 739 | image->page.x,(double) image->page.y); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 740 | if ((image->page.x != 0) || (image->page.y != 0)) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 741 | (void) FormatLocaleFile(file," Origin geometry: %+.20g%+.20g\n",(double) |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 742 | image->page.x,(double) image->page.y); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 743 | (void) FormatLocaleFile(file," Dispose: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 744 | MagickDisposeOptions,(ssize_t) image->dispose)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 745 | if (image->delay != 0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 746 | (void) FormatLocaleFile(file," Delay: %.20gx%.20g\n",(double) image->delay, |
cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 747 | (double) image->ticks_per_second); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 748 | if (image->iterations != 1) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 749 | (void) FormatLocaleFile(file," Iterations: %.20g\n",(double) |
| 750 | image->iterations); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 751 | if ((image->next != (Image *) NULL) || (image->previous != (Image *) NULL)) |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 752 | (void) FormatLocaleFile(file," Scene: %.20g of %.20g\n",(double) |
| 753 | image->scene,(double) GetImageListLength(image)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 754 | else |
| 755 | if (image->scene != 0) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 756 | (void) FormatLocaleFile(file," Scene: %.20g\n",(double) image->scene); |
| 757 | (void) FormatLocaleFile(file," Compression: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 758 | MagickCompressOptions,(ssize_t) image->compression)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 759 | if (image->quality != UndefinedCompressionQuality) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 760 | (void) FormatLocaleFile(file," Quality: %.20g\n",(double) image->quality); |
| 761 | (void) FormatLocaleFile(file," Orientation: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 762 | MagickOrientationOptions,(ssize_t) image->orientation)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 763 | if (image->montage != (char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 764 | (void) FormatLocaleFile(file," Montage: %s\n",image->montage); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 765 | if (image->directory != (char *) NULL) |
| 766 | { |
| 767 | Image |
| 768 | *tile; |
| 769 | |
| 770 | ImageInfo |
| 771 | *image_info; |
| 772 | |
| 773 | register char |
| 774 | *p, |
| 775 | *q; |
| 776 | |
| 777 | WarningHandler |
| 778 | handler; |
| 779 | |
| 780 | /* |
| 781 | Display visual image directory. |
| 782 | */ |
| 783 | image_info=AcquireImageInfo(); |
| 784 | (void) CloneString(&image_info->size,"64x64"); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 785 | (void) FormatLocaleFile(file," Directory:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 786 | for (p=image->directory; *p != '\0'; p++) |
| 787 | { |
| 788 | q=p; |
| 789 | while ((*q != '\n') && (*q != '\0')) |
| 790 | q++; |
| 791 | (void) CopyMagickString(image_info->filename,p,(size_t) (q-p+1)); |
| 792 | p=q; |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 793 | (void) FormatLocaleFile(file," %s",image_info->filename); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 794 | handler=SetWarningHandler((WarningHandler) NULL); |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 795 | tile=ReadImage(image_info,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 796 | (void) SetWarningHandler(handler); |
| 797 | if (tile == (Image *) NULL) |
| 798 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 799 | (void) FormatLocaleFile(file,"\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 800 | continue; |
| 801 | } |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 802 | (void) FormatLocaleFile(file," %.20gx%.20g %s\n",(double) |
| 803 | tile->magick_columns,(double) tile->magick_rows,tile->magick); |
cristy | 018f07f | 2011-09-04 21:15:19 +0000 | [diff] [blame] | 804 | (void) SignatureImage(tile,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 805 | ResetImagePropertyIterator(tile); |
| 806 | property=GetNextImageProperty(tile); |
| 807 | while (property != (const char *) NULL) |
| 808 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 809 | (void) FormatLocaleFile(file," %s:\n",property); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame^] | 810 | value=GetImageProperty(tile,property,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 811 | if (value != (const char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 812 | (void) FormatLocaleFile(file,"%s\n",value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 813 | property=GetNextImageProperty(tile); |
| 814 | } |
| 815 | tile=DestroyImage(tile); |
| 816 | } |
| 817 | image_info=DestroyImageInfo(image_info); |
| 818 | } |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame^] | 819 | (void) GetImageProperty(image,"exif:*",exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 820 | ResetImagePropertyIterator(image); |
| 821 | property=GetNextImageProperty(image); |
| 822 | if (property != (const char *) NULL) |
| 823 | { |
| 824 | /* |
| 825 | Display image properties. |
| 826 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 827 | (void) FormatLocaleFile(file," Properties:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 828 | while (property != (const char *) NULL) |
| 829 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 830 | (void) FormatLocaleFile(file," %s: ",property); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame^] | 831 | value=GetImageProperty(image,property,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 832 | if (value != (const char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 833 | (void) FormatLocaleFile(file,"%s\n",value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 834 | property=GetNextImageProperty(image); |
| 835 | } |
| 836 | } |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 837 | (void) FormatLocaleString(key,MaxTextExtent,"8BIM:1999,2998:#1"); |
cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame^] | 838 | value=GetImageProperty(image,key,exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 839 | if (value != (const char *) NULL) |
| 840 | { |
| 841 | /* |
| 842 | Display clipping path. |
| 843 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 844 | (void) FormatLocaleFile(file," Clipping path: "); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 845 | if (strlen(value) > 80) |
| 846 | (void) fputc('\n',file); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 847 | (void) FormatLocaleFile(file,"%s\n",value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 848 | } |
| 849 | ResetImageProfileIterator(image); |
| 850 | name=GetNextImageProfile(image); |
| 851 | if (name != (char *) NULL) |
| 852 | { |
| 853 | const StringInfo |
| 854 | *profile; |
| 855 | |
| 856 | /* |
| 857 | Identify image profiles. |
| 858 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 859 | (void) FormatLocaleFile(file," Profiles:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 860 | while (name != (char *) NULL) |
| 861 | { |
| 862 | profile=GetImageProfile(image,name); |
| 863 | if (profile == (StringInfo *) NULL) |
| 864 | continue; |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 865 | (void) FormatLocaleFile(file," Profile-%s: %.20g bytes\n",name, |
| 866 | (double) GetStringInfoLength(profile)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 867 | #if defined(MAGICKCORE_LCMS_DELEGATE) |
| 868 | if ((LocaleCompare(name,"icc") == 0) || |
| 869 | (LocaleCompare(name,"icm") == 0)) |
| 870 | { |
| 871 | cmsHPROFILE |
| 872 | icc_profile; |
| 873 | |
| 874 | icc_profile=cmsOpenProfileFromMem(GetStringInfoDatum(profile), |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 875 | (cmsUInt32Number) GetStringInfoLength(profile)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 876 | if (icc_profile != (cmsHPROFILE *) NULL) |
| 877 | { |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 878 | #if defined(LCMS_VERSION) && (LCMS_VERSION < 2000) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 879 | const char |
| 880 | *name; |
| 881 | |
| 882 | name=cmsTakeProductName(icc_profile); |
| 883 | if (name != (const char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 884 | (void) FormatLocaleFile(file," %s\n",name); |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 885 | #else |
| 886 | char |
| 887 | info[MaxTextExtent]; |
| 888 | |
| 889 | (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoDescription, |
| 890 | "en","US",info,MaxTextExtent); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 891 | (void) FormatLocaleFile(file," Description: %s\n",info); |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 892 | (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoManufacturer, |
| 893 | "en","US",info,MaxTextExtent); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 894 | (void) FormatLocaleFile(file," Manufacturer: %s\n",info); |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 895 | (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoModel,"en", |
| 896 | "US",info,MaxTextExtent); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 897 | (void) FormatLocaleFile(file," Model: %s\n",info); |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 898 | (void) cmsGetProfileInfoASCII(icc_profile,cmsInfoCopyright, |
| 899 | "en","US",info,MaxTextExtent); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 900 | (void) FormatLocaleFile(file," Copyright: %s\n",info); |
cristy | d09bcf9 | 2010-03-25 03:04:45 +0000 | [diff] [blame] | 901 | #endif |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 902 | (void) cmsCloseProfile(icc_profile); |
| 903 | } |
| 904 | } |
| 905 | #endif |
| 906 | if (LocaleCompare(name,"iptc") == 0) |
| 907 | { |
| 908 | char |
| 909 | *attribute, |
| 910 | **attribute_list; |
| 911 | |
| 912 | const char |
| 913 | *tag; |
| 914 | |
cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 915 | long |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 916 | dataset, |
| 917 | record, |
| 918 | sentinel; |
| 919 | |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 920 | register ssize_t |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 921 | j; |
| 922 | |
| 923 | size_t |
| 924 | length, |
| 925 | profile_length; |
| 926 | |
| 927 | profile_length=GetStringInfoLength(profile); |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 928 | for (i=0; i < (ssize_t) profile_length; i+=(ssize_t) length) |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 929 | { |
| 930 | length=1; |
| 931 | sentinel=GetStringInfoDatum(profile)[i++]; |
| 932 | if (sentinel != 0x1c) |
| 933 | continue; |
| 934 | dataset=GetStringInfoDatum(profile)[i++]; |
| 935 | record=GetStringInfoDatum(profile)[i++]; |
| 936 | switch (record) |
| 937 | { |
| 938 | case 5: tag="Image Name"; break; |
| 939 | case 7: tag="Edit Status"; break; |
| 940 | case 10: tag="Priority"; break; |
| 941 | case 15: tag="Category"; break; |
| 942 | case 20: tag="Supplemental Category"; break; |
| 943 | case 22: tag="Fixture Identifier"; break; |
| 944 | case 25: tag="Keyword"; break; |
| 945 | case 30: tag="Release Date"; break; |
| 946 | case 35: tag="Release Time"; break; |
| 947 | case 40: tag="Special Instructions"; break; |
| 948 | case 45: tag="Reference Service"; break; |
| 949 | case 47: tag="Reference Date"; break; |
| 950 | case 50: tag="Reference Number"; break; |
| 951 | case 55: tag="Created Date"; break; |
| 952 | case 60: tag="Created Time"; break; |
| 953 | case 65: tag="Originating Program"; break; |
| 954 | case 70: tag="Program Version"; break; |
| 955 | case 75: tag="Object Cycle"; break; |
| 956 | case 80: tag="Byline"; break; |
| 957 | case 85: tag="Byline Title"; break; |
| 958 | case 90: tag="City"; break; |
| 959 | case 95: tag="Province State"; break; |
| 960 | case 100: tag="Country Code"; break; |
| 961 | case 101: tag="Country"; break; |
| 962 | case 103: tag="Original Transmission Reference"; break; |
| 963 | case 105: tag="Headline"; break; |
| 964 | case 110: tag="Credit"; break; |
| 965 | case 115: tag="Src"; break; |
| 966 | case 116: tag="Copyright String"; break; |
| 967 | case 120: tag="Caption"; break; |
| 968 | case 121: tag="Local Caption"; break; |
| 969 | case 122: tag="Caption Writer"; break; |
| 970 | case 200: tag="Custom Field 1"; break; |
| 971 | case 201: tag="Custom Field 2"; break; |
| 972 | case 202: tag="Custom Field 3"; break; |
| 973 | case 203: tag="Custom Field 4"; break; |
| 974 | case 204: tag="Custom Field 5"; break; |
| 975 | case 205: tag="Custom Field 6"; break; |
| 976 | case 206: tag="Custom Field 7"; break; |
| 977 | case 207: tag="Custom Field 8"; break; |
| 978 | case 208: tag="Custom Field 9"; break; |
| 979 | case 209: tag="Custom Field 10"; break; |
| 980 | case 210: tag="Custom Field 11"; break; |
| 981 | case 211: tag="Custom Field 12"; break; |
| 982 | case 212: tag="Custom Field 13"; break; |
| 983 | case 213: tag="Custom Field 14"; break; |
| 984 | case 214: tag="Custom Field 15"; break; |
| 985 | case 215: tag="Custom Field 16"; break; |
| 986 | case 216: tag="Custom Field 17"; break; |
| 987 | case 217: tag="Custom Field 18"; break; |
| 988 | case 218: tag="Custom Field 19"; break; |
| 989 | case 219: tag="Custom Field 20"; break; |
| 990 | default: tag="unknown"; break; |
| 991 | } |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 992 | (void) FormatLocaleFile(file," %s[%.20g,%.20g]: ",tag, |
| 993 | (double) dataset,(double) record); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 994 | length=(size_t) (GetStringInfoDatum(profile)[i++] << 8); |
| 995 | length|=GetStringInfoDatum(profile)[i++]; |
| 996 | attribute=(char *) NULL; |
cristy | 37e0b38 | 2011-06-07 13:31:21 +0000 | [diff] [blame] | 997 | if (~length >= (MaxTextExtent-1)) |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 998 | attribute=(char *) AcquireQuantumMemory(length+MaxTextExtent, |
| 999 | sizeof(*attribute)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1000 | if (attribute != (char *) NULL) |
| 1001 | { |
| 1002 | (void) CopyMagickString(attribute,(char *) |
| 1003 | GetStringInfoDatum(profile)+i,length+1); |
| 1004 | attribute_list=StringToList(attribute); |
| 1005 | if (attribute_list != (char **) NULL) |
| 1006 | { |
| 1007 | for (j=0; attribute_list[j] != (char *) NULL; j++) |
| 1008 | { |
| 1009 | (void) fputs(attribute_list[j],file); |
| 1010 | (void) fputs("\n",file); |
| 1011 | attribute_list[j]=(char *) RelinquishMagickMemory( |
| 1012 | attribute_list[j]); |
| 1013 | } |
| 1014 | attribute_list=(char **) RelinquishMagickMemory( |
| 1015 | attribute_list); |
| 1016 | } |
| 1017 | attribute=DestroyString(attribute); |
| 1018 | } |
| 1019 | } |
| 1020 | } |
| 1021 | if (image->debug != MagickFalse) |
| 1022 | PrintStringInfo(file,name,profile); |
| 1023 | name=GetNextImageProfile(image); |
| 1024 | } |
| 1025 | } |
| 1026 | ResetImageArtifactIterator(image); |
| 1027 | artifact=GetNextImageArtifact(image); |
| 1028 | if (artifact != (const char *) NULL) |
| 1029 | { |
| 1030 | /* |
| 1031 | Display image artifacts. |
| 1032 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1033 | (void) FormatLocaleFile(file," Artifacts:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1034 | while (artifact != (const char *) NULL) |
| 1035 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1036 | (void) FormatLocaleFile(file," %s: ",artifact); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1037 | value=GetImageArtifact(image,artifact); |
| 1038 | if (value != (const char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1039 | (void) FormatLocaleFile(file,"%s\n",value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1040 | artifact=GetNextImageArtifact(image); |
| 1041 | } |
| 1042 | } |
| 1043 | ResetImageRegistryIterator(); |
| 1044 | registry=GetNextImageRegistry(); |
| 1045 | if (registry != (const char *) NULL) |
| 1046 | { |
| 1047 | /* |
| 1048 | Display image registry. |
| 1049 | */ |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1050 | (void) FormatLocaleFile(file," Registry:\n"); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1051 | while (registry != (const char *) NULL) |
| 1052 | { |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1053 | (void) FormatLocaleFile(file," %s: ",registry); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1054 | value=(const char *) GetImageRegistry(StringRegistryType,registry, |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 1055 | exception); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1056 | if (value != (const char *) NULL) |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1057 | (void) FormatLocaleFile(file,"%s\n",value); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1058 | registry=GetNextImageRegistry(); |
| 1059 | } |
| 1060 | } |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1061 | (void) FormatLocaleFile(file," Tainted: %s\n",CommandOptionToMnemonic( |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1062 | MagickBooleanOptions,(ssize_t) image->taint)); |
cristy | b9080c9 | 2009-12-01 20:13:26 +0000 | [diff] [blame] | 1063 | (void) FormatMagickSize(GetBlobSize(image),MagickFalse,format); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1064 | (void) FormatLocaleFile(file," Filesize: %sB\n",format); |
cristy | b9080c9 | 2009-12-01 20:13:26 +0000 | [diff] [blame] | 1065 | (void) FormatMagickSize((MagickSizeType) image->columns*image->rows, |
| 1066 | MagickFalse,format); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1067 | (void) FormatLocaleFile(file," Number pixels: %s\n",format); |
cristy | 3d23169 | 2009-09-29 01:05:22 +0000 | [diff] [blame] | 1068 | (void) FormatMagickSize((MagickSizeType) ((double) image->columns*image->rows/ |
cristy | b9080c9 | 2009-12-01 20:13:26 +0000 | [diff] [blame] | 1069 | elapsed_time+0.5),MagickFalse,format); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1070 | (void) FormatLocaleFile(file," Pixels per second: %s\n",format); |
| 1071 | (void) FormatLocaleFile(file," User time: %0.3fu\n",user_time); |
cristy | 1e60481 | 2011-05-19 18:07:50 +0000 | [diff] [blame] | 1072 | (void) FormatLocaleFile(file," Elapsed time: %lu:%02lu.%03lu\n", |
cristy | a403727 | 2011-08-28 15:11:39 +0000 | [diff] [blame] | 1073 | (unsigned long) (elapsed_time/60.0),(unsigned long) ceil(fmod(elapsed_time, |
| 1074 | 60.0)),(unsigned long) (1000.0*(elapsed_time-floor(elapsed_time)))); |
cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 1075 | (void) FormatLocaleFile(file," Version: %s\n",GetMagickVersion((size_t *) |
cristy | 3d23169 | 2009-09-29 01:05:22 +0000 | [diff] [blame] | 1076 | NULL)); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1077 | (void) fflush(file); |
| 1078 | return(ferror(file) != 0 ? MagickFalse : MagickTrue); |
| 1079 | } |