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