blob: 332fbac61099516829ddd859adf748cdfd8e3105 [file] [log] [blame]
cristy2aac09a2010-06-06 16:46:43 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% DDDD EEEEE BBBB U U GGGG %
7% D D E B B U U G %
8% D D EEE BBBB U U G GG %
9% D D E B B U U G G %
10% DDDD EEEEE BBBB UUU GGG %
11% %
12% %
13% Image Pixel Values for Debugging. %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy2aac09a2010-06-06 16:46:43 +000017% July 1992 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy2aac09a2010-06-06 16:46:43 +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"
43#include "MagickCore/annotate.h"
44#include "MagickCore/attribute.h"
45#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
47#include "MagickCore/cache.h"
48#include "MagickCore/color.h"
49#include "MagickCore/color-private.h"
50#include "MagickCore/colorspace.h"
51#include "MagickCore/constitute.h"
52#include "MagickCore/draw.h"
53#include "MagickCore/exception.h"
54#include "MagickCore/exception-private.h"
55#include "MagickCore/geometry.h"
56#include "MagickCore/image.h"
57#include "MagickCore/image-private.h"
58#include "MagickCore/list.h"
59#include "MagickCore/magick.h"
60#include "MagickCore/memory_.h"
61#include "MagickCore/monitor.h"
62#include "MagickCore/monitor-private.h"
63#include "MagickCore/option.h"
64#include "MagickCore/pixel-accessor.h"
65#include "MagickCore/quantum-private.h"
66#include "MagickCore/static.h"
67#include "MagickCore/statistic.h"
68#include "MagickCore/string_.h"
69#include "MagickCore/module.h"
cristy2aac09a2010-06-06 16:46:43 +000070
71/*
72 Forward declarations.
73*/
74static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +000075 WriteDEBUGImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy2aac09a2010-06-06 16:46:43 +000076
77/*
78%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79% %
80% %
81% %
82% R e g i s t e r D E B U G I m a g e %
83% %
84% %
85% %
86%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87%
88% RegisterDEBUGImage() adds attributes for the DEBUG image format to the
89% 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.
94%
95% The format of the RegisterDEBUGImage method is:
96%
97% size_t RegisterDEBUGImage(void)
98%
99*/
100ModuleExport size_t RegisterDEBUGImage(void)
101{
102 MagickInfo
103 *entry;
104
dirk06b627a2015-04-06 18:59:17 +0000105 entry=AcquireMagickInfo("DEBUG","DEBUG","Image pixel values for debugging");
cristy2aac09a2010-06-06 16:46:43 +0000106 entry->encoder=(EncodeImageHandler *) WriteDEBUGImage;
dirk08e9a112015-02-22 01:51:41 +0000107 entry->flags|=CoderRawSupportFlag;
108 entry->flags|=CoderStealthFlag;
cristy2aac09a2010-06-06 16:46:43 +0000109 (void) RegisterMagickInfo(entry);
110 return(MagickImageCoderSignature);
111}
112
113/*
114%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
115% %
116% %
117% %
118% U n r e g i s t e r D E B U G I m a g e %
119% %
120% %
121% %
122%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
123%
124% UnregisterDEBUGImage() removes format registrations made by the
125% DEBUG module from the list of supported format.
126%
127% The format of the UnregisterDEBUGImage method is:
128%
129% UnregisterDEBUGImage(void)
130%
131*/
132ModuleExport void UnregisterDEBUGImage(void)
133{
134 (void) UnregisterMagickInfo("DEBUG");
135}
136
137/*
138%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
139% %
140% %
141% %
142% W r i t e D E B U G I m a g e %
143% %
144% %
145% %
146%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
147%
148% WriteDEBUGImage writes the image pixel values with 20 places of precision.
149%
150% The format of the WriteDEBUGImage method is:
151%
152% MagickBooleanType WriteDEBUGImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000153% Image *image,ExceptionInfo *exception)
cristy2aac09a2010-06-06 16:46:43 +0000154%
155% A description of each parameter follows.
156%
157% o image_info: the image info.
158%
159% o image: The image.
160%
cristy1e178e72011-08-28 19:44:34 +0000161% o exception: return any errors or warnings in this structure.
162%
cristy2aac09a2010-06-06 16:46:43 +0000163*/
164static MagickBooleanType WriteDEBUGImage(const ImageInfo *image_info,
cristy1e178e72011-08-28 19:44:34 +0000165 Image *image,ExceptionInfo *exception)
cristy2aac09a2010-06-06 16:46:43 +0000166{
167 char
cristy151b66d2015-04-15 10:50:31 +0000168 buffer[MagickPathExtent],
169 colorspace[MagickPathExtent],
170 tuple[MagickPathExtent];
cristy2aac09a2010-06-06 16:46:43 +0000171
172 ssize_t
173 y;
174
175 MagickBooleanType
176 status;
177
178 MagickOffsetType
179 scene;
180
cristy4c08aed2011-07-01 19:47:50 +0000181 PixelInfo
cristy2aac09a2010-06-06 16:46:43 +0000182 pixel;
183
cristy4c08aed2011-07-01 19:47:50 +0000184 register const Quantum
cristy2aac09a2010-06-06 16:46:43 +0000185 *p;
186
187 register ssize_t
188 x;
189
190 /*
191 Open output image file.
192 */
193 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000194 assert(image_info->signature == MagickCoreSignature);
cristy2aac09a2010-06-06 16:46:43 +0000195 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000196 assert(image->signature == MagickCoreSignature);
cristy2aac09a2010-06-06 16:46:43 +0000197 if (image->debug != MagickFalse)
198 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy1e178e72011-08-28 19:44:34 +0000199 status=OpenBlob(image_info,image,WriteBlobMode,exception);
cristy2aac09a2010-06-06 16:46:43 +0000200 if (status == MagickFalse)
201 return(status);
202 scene=0;
203 do
204 {
cristy042ee782011-04-22 18:48:30 +0000205 (void) CopyMagickString(colorspace,CommandOptionToMnemonic(
cristy151b66d2015-04-15 10:50:31 +0000206 MagickColorspaceOptions,(ssize_t) image->colorspace),MagickPathExtent);
cristy2aac09a2010-06-06 16:46:43 +0000207 LocaleLower(colorspace);
208 image->depth=GetImageQuantumDepth(image,MagickTrue);
cristy17f11b02014-12-20 19:37:04 +0000209 if (image->alpha_trait != UndefinedPixelTrait)
cristy151b66d2015-04-15 10:50:31 +0000210 (void) ConcatenateMagickString(colorspace,"a",MagickPathExtent);
211 (void) FormatLocaleString(buffer,MagickPathExtent,
cristy2aac09a2010-06-06 16:46:43 +0000212 "# ImageMagick pixel debugging: %.20g,%.20g,%.20g,%s\n",(double)
cristyc932e2b2011-07-02 00:01:09 +0000213 image->columns,(double) image->rows,(double) ((MagickOffsetType)
214 GetQuantumRange(image->depth)),colorspace);
cristy2aac09a2010-06-06 16:46:43 +0000215 (void) WriteBlobString(image,buffer);
cristy4c08aed2011-07-01 19:47:50 +0000216 GetPixelInfo(image,&pixel);
cristy2aac09a2010-06-06 16:46:43 +0000217 for (y=0; y < (ssize_t) image->rows; y++)
218 {
cristy1e178e72011-08-28 19:44:34 +0000219 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +0000220 if (p == (const Quantum *) NULL)
cristy2aac09a2010-06-06 16:46:43 +0000221 break;
cristy2aac09a2010-06-06 16:46:43 +0000222 for (x=0; x < (ssize_t) image->columns; x++)
223 {
cristy151b66d2015-04-15 10:50:31 +0000224 (void) FormatLocaleString(buffer,MagickPathExtent,"%.20g,%.20g: ",(double)
cristy2aac09a2010-06-06 16:46:43 +0000225 x,(double) y);
226 (void) WriteBlobString(image,buffer);
cristy803640d2011-11-17 02:11:32 +0000227 GetPixelInfoPixel(image,p,&pixel);
cristy151b66d2015-04-15 10:50:31 +0000228 (void) FormatLocaleString(tuple,MagickPathExtent,"%.20g,%.20g,%.20g ",
cristy2aac09a2010-06-06 16:46:43 +0000229 (double) pixel.red,(double) pixel.green,(double) pixel.blue);
230 if (pixel.colorspace == CMYKColorspace)
231 {
232 char
cristy151b66d2015-04-15 10:50:31 +0000233 black[MagickPathExtent];
cristy2aac09a2010-06-06 16:46:43 +0000234
cristy151b66d2015-04-15 10:50:31 +0000235 (void) FormatLocaleString(black,MagickPathExtent,",%.20g ",
cristy4c08aed2011-07-01 19:47:50 +0000236 (double) pixel.black);
cristy151b66d2015-04-15 10:50:31 +0000237 (void) ConcatenateMagickString(tuple,black,MagickPathExtent);
cristy2aac09a2010-06-06 16:46:43 +0000238 }
cristy17f11b02014-12-20 19:37:04 +0000239 if (pixel.alpha_trait != UndefinedPixelTrait)
cristy2aac09a2010-06-06 16:46:43 +0000240 {
241 char
cristy151b66d2015-04-15 10:50:31 +0000242 alpha[MagickPathExtent];
cristy2aac09a2010-06-06 16:46:43 +0000243
cristy151b66d2015-04-15 10:50:31 +0000244 (void) FormatLocaleString(alpha,MagickPathExtent,",%.20g ",
cristy4c08aed2011-07-01 19:47:50 +0000245 (double) pixel.alpha);
cristy151b66d2015-04-15 10:50:31 +0000246 (void) ConcatenateMagickString(tuple,alpha,MagickPathExtent);
cristy2aac09a2010-06-06 16:46:43 +0000247 }
cristy961ba3e2010-06-06 17:08:19 +0000248 (void) WriteBlobString(image,tuple);
cristy2aac09a2010-06-06 16:46:43 +0000249 (void) WriteBlobString(image,"\n");
cristyed231572011-07-14 02:18:59 +0000250 p+=GetPixelChannels(image);
cristy2aac09a2010-06-06 16:46:43 +0000251 }
252 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
253 image->rows);
254 if (status == MagickFalse)
255 break;
256 }
257 if (GetNextImageInList(image) == (Image *) NULL)
258 break;
259 image=SyncNextImageInList(image);
260 status=SetImageProgress(image,SaveImagesTag,scene++,
261 GetImageListLength(image));
262 if (status == MagickFalse)
263 break;
264 } while (image_info->adjoin != MagickFalse);
265 (void) CloseBlob(image);
266 return(MagickTrue);
267}