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