blob: ff9f36d6fcf6c429b35a94b555708daa7969641b [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
cristy787c09c2010-04-16 18:18:34 +00006% H H IIIII SSSSS TTTTT OOO GGGG RRRR AAA M M %
7% H H I SS T O O G R R A A MM MM %
8% HHHHH I SSS T O O G GG RRRR AAAAA M M M %
9% H H I SS T O O G G R R A A M M %
10% H H IIIII SSSSS T OOO GGG R R A A M M %
cristy3ed852e2009-09-05 21:47:34 +000011% %
12% %
cristy787c09c2010-04-16 18:18:34 +000013% Write A Histogram Image. %
cristy3ed852e2009-09-05 21:47:34 +000014% %
15% Software Design %
cristy787c09c2010-04-16 18:18:34 +000016% John Cristy %
17% July 1992 %
cristy3ed852e2009-09-05 21:47:34 +000018% %
19% %
cristy45ef08f2012-12-07 13:13:34 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% 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%
37*/
38
39/*
40 Include declarations.
41*/
cristy4c08aed2011-07-01 19:47:50 +000042#include "MagickCore/studio.h"
cristy76ce6e12013-04-05 14:33:38 +000043#include "MagickCore/artifact.h"
cristy4c08aed2011-07-01 19:47:50 +000044#include "MagickCore/blob.h"
45#include "MagickCore/blob-private.h"
46#include "MagickCore/cache.h"
47#include "MagickCore/color.h"
48#include "MagickCore/color-private.h"
49#include "MagickCore/constitute.h"
50#include "MagickCore/exception.h"
51#include "MagickCore/exception-private.h"
52#include "MagickCore/geometry.h"
53#include "MagickCore/histogram.h"
54#include "MagickCore/image-private.h"
55#include "MagickCore/magick.h"
56#include "MagickCore/memory_.h"
57#include "MagickCore/monitor.h"
58#include "MagickCore/monitor-private.h"
59#include "MagickCore/option.h"
60#include "MagickCore/pixel-accessor.h"
cristy76ce6e12013-04-05 14:33:38 +000061#include "MagickCore/property.h"
cristy4c08aed2011-07-01 19:47:50 +000062#include "MagickCore/quantum-private.h"
63#include "MagickCore/resource_.h"
64#include "MagickCore/static.h"
65#include "MagickCore/statistic.h"
66#include "MagickCore/string_.h"
67#include "MagickCore/module.h"
cristye40005d2012-03-23 12:18:45 +000068#include "MagickCore/token.h"
cristy4c08aed2011-07-01 19:47:50 +000069#include "MagickCore/utility.h"
cristy3ed852e2009-09-05 21:47:34 +000070
71/*
72 Forward declarations.
73*/
cristy787c09c2010-04-16 18:18:34 +000074static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000075 WriteHISTOGRAMImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +000076
77/*
78%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79% %
80% %
81% %
cristy787c09c2010-04-16 18:18:34 +000082% R e g i s t e r H I S T O G R A M I m a g e %
cristy3ed852e2009-09-05 21:47:34 +000083% %
84% %
85% %
86%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87%
cristy787c09c2010-04-16 18:18:34 +000088% RegisterHISTOGRAMImage() adds attributes for the Histogram image format
89% to the list of supported formats. The attributes include the image format
90% tag, a method to read and/or write the format, whether the format
91% supports the saving of more than one frame to the same file or blob,
92% whether the format supports native in-memory I/O, and a brief
93% description of the format.
cristy3ed852e2009-09-05 21:47:34 +000094%
cristy787c09c2010-04-16 18:18:34 +000095% The format of the RegisterHISTOGRAMImage method is:
cristy3ed852e2009-09-05 21:47:34 +000096%
cristybb503372010-05-27 20:51:26 +000097% size_t RegisterHISTOGRAMImage(void)
cristy787c09c2010-04-16 18:18:34 +000098%
99*/
cristybb503372010-05-27 20:51:26 +0000100ModuleExport size_t RegisterHISTOGRAMImage(void)
cristy787c09c2010-04-16 18:18:34 +0000101{
102 MagickInfo
103 *entry;
104
105 entry=SetMagickInfo("HISTOGRAM");
106 entry->encoder=(EncodeImageHandler *) WriteHISTOGRAMImage;
107 entry->adjoin=MagickFalse;
cristy009d7392010-07-25 22:08:41 +0000108 entry->format_type=ImplicitFormatType;
cristy787c09c2010-04-16 18:18:34 +0000109 entry->description=ConstantString("Histogram of the image");
110 entry->module=ConstantString("HISTOGRAM");
111 (void) RegisterMagickInfo(entry);
112 return(MagickImageCoderSignature);
113}
114
115/*
116%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
117% %
118% %
119% %
120% U n r e g i s t e r H I S T O G R A M I m a g e %
121% %
122% %
123% %
124%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
125%
126% UnregisterHISTOGRAMImage() removes format registrations made by the
127% HISTOGRAM module from the list of supported formats.
128%
129% The format of the UnregisterHISTOGRAMImage method is:
130%
131% UnregisterHISTOGRAMImage(void)
132%
133*/
134ModuleExport void UnregisterHISTOGRAMImage(void)
135{
136 (void) UnregisterMagickInfo("HISTOGRAM");
137}
138
139/*
140%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
141% %
142% %
143% %
144% W r i t e H I S T O G R A M I m a g e %
145% %
146% %
147% %
148%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
149%
150% WriteHISTOGRAMImage() writes an image to a file in Histogram format.
151% The image shows a histogram of the color (or gray) values in the image. The
152% image consists of three overlaid histograms: a red one for the red channel,
153% a green one for the green channel, and a blue one for the blue channel. The
154% image comment contains a list of unique pixel values and the number of times
155% each occurs in the image.
156%
157% This method is strongly based on a similar one written by
158% muquit@warm.semcor.com which in turn is based on ppmhistmap of netpbm.
159%
160% The format of the WriteHISTOGRAMImage method is:
161%
162% MagickBooleanType WriteHISTOGRAMImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000163% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000164%
165% A description of each parameter follows.
166%
cristy787c09c2010-04-16 18:18:34 +0000167% o image_info: the image info.
cristy3ed852e2009-09-05 21:47:34 +0000168%
cristy787c09c2010-04-16 18:18:34 +0000169% o image: The image.
cristy3ed852e2009-09-05 21:47:34 +0000170%
cristy1e178e72011-08-28 19:44:34 +0000171% o exception: return any errors or warnings in this structure.
172%
cristy3ed852e2009-09-05 21:47:34 +0000173*/
174
cristy787c09c2010-04-16 18:18:34 +0000175static inline size_t MagickMax(const size_t x,const size_t y)
cristy3ed852e2009-09-05 21:47:34 +0000176{
cristy787c09c2010-04-16 18:18:34 +0000177 if (x > y)
178 return(x);
179 return(y);
cristy3ed852e2009-09-05 21:47:34 +0000180}
181
cristy787c09c2010-04-16 18:18:34 +0000182static MagickBooleanType WriteHISTOGRAMImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000183 Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000184{
cristy31ac0f02011-03-12 02:04:47 +0000185#define HistogramDensity "256x200"
cristy3ed852e2009-09-05 21:47:34 +0000186
cristy1bd4a3a2010-04-16 12:38:47 +0000187 char
cristy787c09c2010-04-16 18:18:34 +0000188 filename[MaxTextExtent];
cristy1bd4a3a2010-04-16 12:38:47 +0000189
cristy6db52da2013-02-05 13:21:56 +0000190 const char
191 *option;
192
cristy787c09c2010-04-16 18:18:34 +0000193 Image
194 *histogram_image;
195
196 ImageInfo
197 *write_info;
198
cristy1bd4a3a2010-04-16 12:38:47 +0000199 MagickBooleanType
200 status;
201
cristy4c08aed2011-07-01 19:47:50 +0000202 PixelInfo
cristy787c09c2010-04-16 18:18:34 +0000203 *histogram;
cristy1bd4a3a2010-04-16 12:38:47 +0000204
cristya19f1d72012-08-07 18:24:38 +0000205 double
cristy787c09c2010-04-16 18:18:34 +0000206 maximum,
207 scale;
208
209 RectangleInfo
210 geometry;
211
cristy4c08aed2011-07-01 19:47:50 +0000212 register const Quantum
cristy1bd4a3a2010-04-16 12:38:47 +0000213 *p;
214
cristy4c08aed2011-07-01 19:47:50 +0000215 register Quantum
cristy787c09c2010-04-16 18:18:34 +0000216 *q,
217 *r;
cristy1bd4a3a2010-04-16 12:38:47 +0000218
cristy31ac0f02011-03-12 02:04:47 +0000219 register ssize_t
220 x;
221
cristy787c09c2010-04-16 18:18:34 +0000222 size_t
223 length;
cristy1bd4a3a2010-04-16 12:38:47 +0000224
cristy31ac0f02011-03-12 02:04:47 +0000225 ssize_t
226 y;
227
cristy1bd4a3a2010-04-16 12:38:47 +0000228 /*
cristy787c09c2010-04-16 18:18:34 +0000229 Allocate histogram image.
cristy1bd4a3a2010-04-16 12:38:47 +0000230 */
cristy787c09c2010-04-16 18:18:34 +0000231 assert(image_info != (const ImageInfo *) NULL);
232 assert(image_info->signature == MagickSignature);
233 assert(image != (Image *) NULL);
234 assert(image->signature == MagickSignature);
235 if (image->debug != MagickFalse)
236 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
237 image_info->filename);
238 SetGeometry(image,&geometry);
239 if (image_info->density == (char *) NULL)
240 (void) ParseAbsoluteGeometry(HistogramDensity,&geometry);
241 else
242 (void) ParseAbsoluteGeometry(image_info->density,&geometry);
243 histogram_image=CloneImage(image,geometry.width,geometry.height,MagickTrue,
cristy1e178e72011-08-28 19:44:34 +0000244 exception);
cristy787c09c2010-04-16 18:18:34 +0000245 if (histogram_image == (Image *) NULL)
246 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
cristy1e178e72011-08-28 19:44:34 +0000247 (void) SetImageStorageClass(histogram_image,DirectClass,exception);
cristy787c09c2010-04-16 18:18:34 +0000248 /*
249 Allocate histogram count arrays.
250 */
cristy6e963d82012-06-19 15:23:24 +0000251 length=MagickMax((size_t) ScaleQuantumToChar(QuantumRange)+1UL,
cristy787c09c2010-04-16 18:18:34 +0000252 histogram_image->columns);
cristy4c08aed2011-07-01 19:47:50 +0000253 histogram=(PixelInfo *) AcquireQuantumMemory(length,
cristy787c09c2010-04-16 18:18:34 +0000254 sizeof(*histogram));
cristy4c08aed2011-07-01 19:47:50 +0000255 if (histogram == (PixelInfo *) NULL)
cristy1bd4a3a2010-04-16 12:38:47 +0000256 {
cristy787c09c2010-04-16 18:18:34 +0000257 histogram_image=DestroyImage(histogram_image);
258 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
259 }
260 /*
261 Initialize histogram count arrays.
262 */
cristy787c09c2010-04-16 18:18:34 +0000263 (void) ResetMagickMemory(histogram,0,length*sizeof(*histogram));
cristybb503372010-05-27 20:51:26 +0000264 for (y=0; y < (ssize_t) image->rows; y++)
cristy787c09c2010-04-16 18:18:34 +0000265 {
cristy1e178e72011-08-28 19:44:34 +0000266 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000267 if (p == (const Quantum *) NULL)
cristy787c09c2010-04-16 18:18:34 +0000268 break;
cristybb503372010-05-27 20:51:26 +0000269 for (x=0; x < (ssize_t) image->columns; x++)
cristy787c09c2010-04-16 18:18:34 +0000270 {
cristyed231572011-07-14 02:18:59 +0000271 if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +0000272 histogram[ScaleQuantumToChar(GetPixelRed(image,p))].red++;
cristyed231572011-07-14 02:18:59 +0000273 if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +0000274 histogram[ScaleQuantumToChar(GetPixelGreen(image,p))].green++;
cristyed231572011-07-14 02:18:59 +0000275 if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0)
cristy4c08aed2011-07-01 19:47:50 +0000276 histogram[ScaleQuantumToChar(GetPixelBlue(image,p))].blue++;
cristyed231572011-07-14 02:18:59 +0000277 p+=GetPixelChannels(image);
cristy787c09c2010-04-16 18:18:34 +0000278 }
279 }
280 maximum=histogram[0].red;
cristybb503372010-05-27 20:51:26 +0000281 for (x=0; x < (ssize_t) histogram_image->columns; x++)
cristy787c09c2010-04-16 18:18:34 +0000282 {
cristyed231572011-07-14 02:18:59 +0000283 if (((GetPixelRedTraits(image) & UpdatePixelTrait) != 0) &&
cristy2b9582a2011-07-04 17:38:56 +0000284 (maximum < histogram[x].red))
cristy787c09c2010-04-16 18:18:34 +0000285 maximum=histogram[x].red;
cristyed231572011-07-14 02:18:59 +0000286 if (((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0) &&
cristy2b9582a2011-07-04 17:38:56 +0000287 (maximum < histogram[x].green))
cristy787c09c2010-04-16 18:18:34 +0000288 maximum=histogram[x].green;
cristyed231572011-07-14 02:18:59 +0000289 if (((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0) &&
cristy2b9582a2011-07-04 17:38:56 +0000290 (maximum < histogram[x].blue))
cristy787c09c2010-04-16 18:18:34 +0000291 maximum=histogram[x].blue;
292 }
cristya19f1d72012-08-07 18:24:38 +0000293 scale=(double) histogram_image->rows/maximum;
cristy787c09c2010-04-16 18:18:34 +0000294 /*
295 Initialize histogram image.
296 */
cristyfad60c92012-01-19 18:32:39 +0000297 (void) QueryColorCompliance("#000000",AllCompliance,
cristy9950d572011-10-01 18:22:35 +0000298 &histogram_image->background_color,exception);
cristyea1a8aa2011-10-20 13:24:06 +0000299 (void) SetImageBackgroundColor(histogram_image,exception);
cristybb503372010-05-27 20:51:26 +0000300 for (x=0; x < (ssize_t) histogram_image->columns; x++)
cristy787c09c2010-04-16 18:18:34 +0000301 {
cristyfad60c92012-01-19 18:32:39 +0000302 q=GetAuthenticPixels(histogram_image,x,0,1,histogram_image->rows,exception);
cristyacd2ed22011-08-30 01:44:23 +0000303 if (q == (Quantum *) NULL)
cristy787c09c2010-04-16 18:18:34 +0000304 break;
cristyed231572011-07-14 02:18:59 +0000305 if ((GetPixelRedTraits(image) & UpdatePixelTrait) != 0)
cristy1bd4a3a2010-04-16 12:38:47 +0000306 {
cristybb503372010-05-27 20:51:26 +0000307 y=(ssize_t) ceil(histogram_image->rows-scale*histogram[x].red-0.5);
cristy6db52da2013-02-05 13:21:56 +0000308 r=q+y*GetPixelChannels(histogram_image);
cristybb503372010-05-27 20:51:26 +0000309 for ( ; y < (ssize_t) histogram_image->rows; y++)
cristy1bd4a3a2010-04-16 12:38:47 +0000310 {
cristy4c08aed2011-07-01 19:47:50 +0000311 SetPixelRed(histogram_image,QuantumRange,r);
cristy6db52da2013-02-05 13:21:56 +0000312 r+=GetPixelChannels(histogram_image);
cristy1bd4a3a2010-04-16 12:38:47 +0000313 }
cristy787c09c2010-04-16 18:18:34 +0000314 }
cristyed231572011-07-14 02:18:59 +0000315 if ((GetPixelGreenTraits(image) & UpdatePixelTrait) != 0)
cristy787c09c2010-04-16 18:18:34 +0000316 {
cristybb503372010-05-27 20:51:26 +0000317 y=(ssize_t) ceil(histogram_image->rows-scale*histogram[x].green-0.5);
cristy6db52da2013-02-05 13:21:56 +0000318 r=q+y*GetPixelChannels(histogram_image);
cristybb503372010-05-27 20:51:26 +0000319 for ( ; y < (ssize_t) histogram_image->rows; y++)
cristy787c09c2010-04-16 18:18:34 +0000320 {
cristy4c08aed2011-07-01 19:47:50 +0000321 SetPixelGreen(histogram_image,QuantumRange,r);
cristy6db52da2013-02-05 13:21:56 +0000322 r+=GetPixelChannels(histogram_image);
cristy787c09c2010-04-16 18:18:34 +0000323 }
324 }
cristyed231572011-07-14 02:18:59 +0000325 if ((GetPixelBlueTraits(image) & UpdatePixelTrait) != 0)
cristy787c09c2010-04-16 18:18:34 +0000326 {
cristybb503372010-05-27 20:51:26 +0000327 y=(ssize_t) ceil(histogram_image->rows-scale*histogram[x].blue-0.5);
cristy6db52da2013-02-05 13:21:56 +0000328 r=q+y*GetPixelChannels(histogram_image);
cristybb503372010-05-27 20:51:26 +0000329 for ( ; y < (ssize_t) histogram_image->rows; y++)
cristy787c09c2010-04-16 18:18:34 +0000330 {
cristy4c08aed2011-07-01 19:47:50 +0000331 SetPixelBlue(histogram_image,QuantumRange,r);
cristy6db52da2013-02-05 13:21:56 +0000332 r+=GetPixelChannels(histogram_image);
cristy787c09c2010-04-16 18:18:34 +0000333 }
334 }
335 if (SyncAuthenticPixels(histogram_image,exception) == MagickFalse)
336 break;
337 status=SetImageProgress(image,SaveImageTag,y,histogram_image->rows);
338 if (status == MagickFalse)
339 break;
340 }
cristy4c08aed2011-07-01 19:47:50 +0000341 histogram=(PixelInfo *) RelinquishMagickMemory(histogram);
cristy8b206ba2013-04-05 01:11:15 +0000342 option=GetImageArtifact(image,"histogram:unique-colors");
cristyd5f40a92013-02-05 14:07:59 +0000343 if ((option == (const char *) NULL) || (IsStringTrue(option) != MagickFalse))
cristy1bd4a3a2010-04-16 12:38:47 +0000344 {
cristy787c09c2010-04-16 18:18:34 +0000345 FILE
346 *file;
cristy1bd4a3a2010-04-16 12:38:47 +0000347
cristy787c09c2010-04-16 18:18:34 +0000348 int
349 unique_file;
350
351 /*
352 Add a unique colors as an image comment.
353 */
354 file=(FILE *) NULL;
355 unique_file=AcquireUniqueFileResource(filename);
356 if (unique_file != -1)
357 file=fdopen(unique_file,"wb");
358 if ((unique_file != -1) && (file != (FILE *) NULL))
359 {
360 char
361 *property;
362
cristy1e178e72011-08-28 19:44:34 +0000363 (void) GetNumberColors(image,file,exception);
cristy787c09c2010-04-16 18:18:34 +0000364 (void) fclose(file);
cristy1e178e72011-08-28 19:44:34 +0000365 property=FileToString(filename,~0UL,exception);
cristy787c09c2010-04-16 18:18:34 +0000366 if (property != (char *) NULL)
367 {
cristyd15e6592011-10-15 00:13:06 +0000368 (void) SetImageProperty(histogram_image,"comment",property,
369 exception);
cristy787c09c2010-04-16 18:18:34 +0000370 property=DestroyString(property);
371 }
372 }
373 (void) RelinquishUniqueFileResource(filename);
cristy1bd4a3a2010-04-16 12:38:47 +0000374 }
cristy787c09c2010-04-16 18:18:34 +0000375 /*
376 Write Histogram image.
377 */
378 (void) CopyMagickString(histogram_image->filename,image_info->filename,
379 MaxTextExtent);
380 write_info=CloneImageInfo(image_info);
cristy1e178e72011-08-28 19:44:34 +0000381 (void) SetImageInfo(write_info,1,exception);
cristy787c09c2010-04-16 18:18:34 +0000382 if (LocaleCompare(write_info->magick,"HISTOGRAM") == 0)
cristy6db52da2013-02-05 13:21:56 +0000383 (void) FormatLocaleString(histogram_image->filename,MaxTextExtent,"miff:%s",
384 write_info->filename);
cristy1e178e72011-08-28 19:44:34 +0000385 status=WriteImage(write_info,histogram_image,exception);
cristy787c09c2010-04-16 18:18:34 +0000386 histogram_image=DestroyImage(histogram_image);
387 write_info=DestroyImageInfo(write_info);
388 return(status);
cristy1bd4a3a2010-04-16 12:38:47 +0000389}