]> granicus.if.org Git - imagemagick/blob - coders/hald.c
(no commit message)
[imagemagick] / coders / hald.c
1 /*
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                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2011 ImageMagick Studio LLC, a non-profit organization      %
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 %
37 */
38 \f
39 /*
40   Include declarations.
41 */
42 #include "magick/studio.h"
43 #include "magick/blob.h"
44 #include "magick/blob-private.h"
45 #include "magick/cache.h"
46 #include "magick/colorspace.h"
47 #include "magick/exception.h"
48 #include "magick/exception-private.h"
49 #include "magick/image.h"
50 #include "magick/image-private.h"
51 #include "magick/list.h"
52 #include "magick/magick.h"
53 #include "magick/memory_.h"
54 #include "magick/module.h"
55 #include "magick/monitor.h"
56 #include "magick/monitor-private.h"
57 #include "magick/quantum-private.h"
58 #include "magick/static.h"
59 #include "magick/string_.h"
60 #include "magick/string-private.h"
61 \f
62 /*
63 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64 %                                                                             %
65 %                                                                             %
66 %                                                                             %
67 %   R e a d H A L D I m a g e                                                 %
68 %                                                                             %
69 %                                                                             %
70 %                                                                             %
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72 %
73 %  ReadHALDImage() creates a Hald color lookup table image and returns it.  It
74 %  allocates the memory necessary for the new Image structure and returns a
75 %  pointer to the new image.
76 %
77 %  The format of the ReadHALDImage method is:
78 %
79 %      Image *ReadHALDImage(const ImageInfo *image_info,
80 %        ExceptionInfo *exception)
81 %
82 %  A description of each parameter follows:
83 %
84 %    o image_info: the image info.
85 %
86 %    o exception: return any errors or warnings in this structure.
87 %
88 */
89 static Image *ReadHALDImage(const ImageInfo *image_info,
90   ExceptionInfo *exception)
91 {
92   Image
93     *image;
94
95   MagickBooleanType
96     status;
97
98   size_t
99     cube_size,
100     level;
101
102   ssize_t
103     y;
104
105   /*
106     Create HALD color lookup table image.
107   */
108   assert(image_info != (const ImageInfo *) NULL);
109   assert(image_info->signature == MagickSignature);
110   if (image_info->debug != MagickFalse)
111     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
112       image_info->filename);
113   assert(exception != (ExceptionInfo *) NULL);
114   assert(exception->signature == MagickSignature);
115   image=AcquireImage(image_info);
116   level=0;
117   if (*image_info->filename != '\0')
118     level=StringToUnsignedLong(image_info->filename);
119   if (level < 2)
120     level=8;
121   status=MagickTrue;
122   cube_size=level*level;
123   image->columns=(size_t) (level*cube_size);
124   image->rows=(size_t) (level*cube_size);
125   for (y=0; y < (ssize_t) image->rows; y+=(ssize_t) level)
126   {
127     ssize_t
128       blue,
129       green,
130       red;
131
132     register PixelPacket
133       *restrict q;
134
135     if (status == MagickFalse)
136       continue;
137     q=QueueAuthenticPixels(image,0,y,image->columns,(size_t) level,
138       exception);
139     if (q == (PixelPacket *) NULL)
140       {
141         status=MagickFalse;
142         continue;
143       }
144     blue=y/(ssize_t) level;
145     for (green=0; green < (ssize_t) cube_size; green++)
146     {
147       for (red=0; red < (ssize_t) cube_size; red++)
148       {
149         SetRedPixelComponent(q,ClampToQuantum(QuantumRange*red/
150           (cube_size-1.0)));
151         SetGreenPixelComponent(q,ClampToQuantum(QuantumRange*green/
152           (cube_size-1.0)));
153         SetBluePixelComponent(q,ClampToQuantum(QuantumRange*blue/
154           (cube_size-1.0)));
155         SetOpacityPixelComponent(q,OpaqueOpacity);
156         q++;
157       }
158     }
159     if (SyncAuthenticPixels(image,exception) == MagickFalse)
160       status=MagickFalse;
161   }
162   return(GetFirstImageInList(image));
163 }
164 \f
165 /*
166 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
167 %                                                                             %
168 %                                                                             %
169 %                                                                             %
170 %   R e g i s t e r H A L D I m a g e                                         %
171 %                                                                             %
172 %                                                                             %
173 %                                                                             %
174 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
175 %
176 %  RegisterHALDImage() adds attributes for the Hald color lookup table image
177 %  format to the list of supported formats.  The attributes include the image
178 %  format tag, a method to read and/or write the format, whether the format
179 %  supports the saving of more than one frame to the same file or blob, whether
180 %  the format supports native in-memory I/O, and a brief description of the
181 %  format.
182 %
183 %  The format of the RegisterHALDImage method is:
184 %
185 %      size_t RegisterHALDImage(void)
186 %
187 */
188 ModuleExport size_t RegisterHALDImage(void)
189 {
190   MagickInfo
191     *entry;
192
193   entry=SetMagickInfo("HALD");
194   entry->decoder=(DecodeImageHandler *) ReadHALDImage;
195   entry->adjoin=MagickFalse;
196   entry->format_type=ImplicitFormatType;
197   entry->raw=MagickTrue;
198   entry->endian_support=MagickTrue;
199   entry->description=ConstantString("Identity Hald color lookup table image");
200   (void) RegisterMagickInfo(entry);
201   return(MagickImageCoderSignature);
202 }
203 \f
204 /*
205 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
206 %                                                                             %
207 %                                                                             %
208 %                                                                             %
209 %   U n r e g i s t e r H A L D I m a g e                                     %
210 %                                                                             %
211 %                                                                             %
212 %                                                                             %
213 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
214 %
215 %  UnregisterHALDImage() removes format registrations made by the
216 %  HALD module from the list of supported formats.
217 %
218 %  The format of the UnregisterHALDImage method is:
219 %
220 %      UnregisterHALDImage(void)
221 %
222 */
223 ModuleExport void UnregisterHALDImage(void)
224 {
225   (void) UnregisterMagickInfo("HALD");
226 }