blob: bb4e550b1fec7e66a46e5f70402e06d6ae785fbf [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% H H AAA L DDDD %
7% H H A A L D D %
8% HHHHH AAAAA L D D %
9% H H A A L D D %
10% H H A A LLLLL DDDD %
11% %
12% %
13% Create Identity Hald CLUT Image Format %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 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"
43#include "MagickCore/blob.h"
44#include "MagickCore/blob-private.h"
45#include "MagickCore/cache.h"
46#include "MagickCore/colorspace.h"
47#include "MagickCore/exception.h"
48#include "MagickCore/exception-private.h"
49#include "MagickCore/image.h"
50#include "MagickCore/image-private.h"
51#include "MagickCore/list.h"
52#include "MagickCore/magick.h"
53#include "MagickCore/memory_.h"
54#include "MagickCore/module.h"
55#include "MagickCore/monitor.h"
56#include "MagickCore/monitor-private.h"
57#include "MagickCore/pixel-accessor.h"
58#include "MagickCore/quantum-private.h"
cristyac245f82012-05-05 17:13:57 +000059#include "MagickCore/resource_.h"
cristy4c08aed2011-07-01 19:47:50 +000060#include "MagickCore/static.h"
61#include "MagickCore/string_.h"
62#include "MagickCore/string-private.h"
cristyccfffb42012-05-06 01:17:48 +000063#include "MagickCore/thread-private.h"
cristy3ed852e2009-09-05 21:47:34 +000064
65/*
66%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
67% %
68% %
69% %
70% R e a d H A L D I m a g e %
71% %
72% %
73% %
74%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
75%
76% ReadHALDImage() creates a Hald color lookup table image and returns it. It
77% allocates the memory necessary for the new Image structure and returns a
78% pointer to the new image.
79%
80% The format of the ReadHALDImage method is:
81%
82% Image *ReadHALDImage(const ImageInfo *image_info,
83% ExceptionInfo *exception)
84%
85% A description of each parameter follows:
86%
87% o image_info: the image info.
88%
89% o exception: return any errors or warnings in this structure.
90%
91*/
92static Image *ReadHALDImage(const ImageInfo *image_info,
93 ExceptionInfo *exception)
94{
95 Image
96 *image;
97
cristy3ed852e2009-09-05 21:47:34 +000098 MagickBooleanType
99 status;
100
101 size_t
102 cube_size,
103 level;
104
cristyebc891a2011-04-24 23:04:16 +0000105 ssize_t
106 y;
107
cristy3ed852e2009-09-05 21:47:34 +0000108 /*
109 Create HALD color lookup table image.
110 */
111 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000112 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000113 if (image_info->debug != MagickFalse)
114 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
115 image_info->filename);
116 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000117 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000118 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000119 level=0;
120 if (*image_info->filename != '\0')
cristye27293e2009-12-18 02:53:20 +0000121 level=StringToUnsignedLong(image_info->filename);
cristy3ed852e2009-09-05 21:47:34 +0000122 if (level < 2)
123 level=8;
124 status=MagickTrue;
125 cube_size=level*level;
cristybb503372010-05-27 20:51:26 +0000126 image->columns=(size_t) (level*cube_size);
127 image->rows=(size_t) (level*cube_size);
cristyacabb842014-12-14 23:36:33 +0000128 status=SetImageExtent(image,image->columns,image->rows,exception);
129 if (status == MagickFalse)
130 return(DestroyImageList(image));
cristybb503372010-05-27 20:51:26 +0000131 for (y=0; y < (ssize_t) image->rows; y+=(ssize_t) level)
cristy3ed852e2009-09-05 21:47:34 +0000132 {
cristybb503372010-05-27 20:51:26 +0000133 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000134 blue,
135 green,
136 red;
137
cristy4c08aed2011-07-01 19:47:50 +0000138 register Quantum
dirk05d2ff72015-11-18 23:13:43 +0100139 *magick_restrict q;
cristy3ed852e2009-09-05 21:47:34 +0000140
141 if (status == MagickFalse)
142 continue;
cristybb503372010-05-27 20:51:26 +0000143 q=QueueAuthenticPixels(image,0,y,image->columns,(size_t) level,
cristyaa740112010-03-30 17:58:44 +0000144 exception);
cristyacd2ed22011-08-30 01:44:23 +0000145 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000146 {
147 status=MagickFalse;
148 continue;
149 }
cristybb503372010-05-27 20:51:26 +0000150 blue=y/(ssize_t) level;
151 for (green=0; green < (ssize_t) cube_size; green++)
cristy3ed852e2009-09-05 21:47:34 +0000152 {
cristybb503372010-05-27 20:51:26 +0000153 for (red=0; red < (ssize_t) cube_size; red++)
cristy3ed852e2009-09-05 21:47:34 +0000154 {
cristy4c08aed2011-07-01 19:47:50 +0000155 SetPixelRed(image,ClampToQuantum(QuantumRange*red/(cube_size-1.0)),q);
cristy78778cb2012-01-17 14:48:47 +0000156 SetPixelGreen(image,ClampToQuantum(QuantumRange*green/(cube_size-1.0)),
157 q);
cristy4c08aed2011-07-01 19:47:50 +0000158 SetPixelBlue(image,ClampToQuantum(QuantumRange*blue/(cube_size-1.0)),q);
159 SetPixelAlpha(image,OpaqueAlpha,q);
cristyed231572011-07-14 02:18:59 +0000160 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000161 }
162 }
cristyaa740112010-03-30 17:58:44 +0000163 if (SyncAuthenticPixels(image,exception) == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000164 status=MagickFalse;
165 }
cristy3ed852e2009-09-05 21:47:34 +0000166 return(GetFirstImageInList(image));
167}
168
169/*
170%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
171% %
172% %
173% %
174% R e g i s t e r H A L D I m a g e %
175% %
176% %
177% %
178%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
179%
180% RegisterHALDImage() adds attributes for the Hald color lookup table image
181% format to the list of supported formats. The attributes include the image
182% format tag, a method to read and/or write the format, whether the format
183% supports the saving of more than one frame to the same file or blob, whether
184% the format supports native in-memory I/O, and a brief description of the
185% format.
186%
187% The format of the RegisterHALDImage method is:
188%
cristybb503372010-05-27 20:51:26 +0000189% size_t RegisterHALDImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000190%
191*/
cristybb503372010-05-27 20:51:26 +0000192ModuleExport size_t RegisterHALDImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000193{
194 MagickInfo
195 *entry;
196
dirk06b627a2015-04-06 18:59:17 +0000197 entry=AcquireMagickInfo("HALD","HALD",
198 "Identity Hald color lookup table image");
cristy3ed852e2009-09-05 21:47:34 +0000199 entry->decoder=(DecodeImageHandler *) ReadHALDImage;
dirk08e9a112015-02-22 01:51:41 +0000200 entry->flags^=CoderAdjoinFlag;
cristy009d7392010-07-25 22:08:41 +0000201 entry->format_type=ImplicitFormatType;
dirk08e9a112015-02-22 01:51:41 +0000202 entry->flags|=CoderRawSupportFlag;
203 entry->flags|=CoderEndianSupportFlag;
cristy3ed852e2009-09-05 21:47:34 +0000204 (void) RegisterMagickInfo(entry);
205 return(MagickImageCoderSignature);
206}
207
208/*
209%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
210% %
211% %
212% %
213% U n r e g i s t e r H A L D I m a g e %
214% %
215% %
216% %
217%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
218%
219% UnregisterHALDImage() removes format registrations made by the
220% HALD module from the list of supported formats.
221%
222% The format of the UnregisterHALDImage method is:
223%
224% UnregisterHALDImage(void)
225%
226*/
227ModuleExport void UnregisterHALDImage(void)
228{
229 (void) UnregisterMagickInfo("HALD");
230}