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