]> granicus.if.org Git - imagemagick/blob - coders/rla.c
(no commit message)
[imagemagick] / coders / rla.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                            RRRR   L       AAA                               %
7 %                            R   R  L      A   A                              %
8 %                            RRRR   L      AAAAA                              %
9 %                            R R    L      A   A                              %
10 %                            R  R   LLLLL  A   A                              %
11 %                                                                             %
12 %                                                                             %
13 %                      Read Alias/Wavefront Image Format                      %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2013 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 "MagickCore/studio.h"
43 #include "MagickCore/property.h"
44 #include "MagickCore/blob.h"
45 #include "MagickCore/blob-private.h"
46 #include "MagickCore/cache.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/monitor.h"
55 #include "MagickCore/monitor-private.h"
56 #include "MagickCore/pixel-accessor.h"
57 #include "MagickCore/quantum-private.h"
58 #include "MagickCore/static.h"
59 #include "MagickCore/string_.h"
60 #include "MagickCore/module.h"
61 \f
62 /*
63 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64 %                                                                             %
65 %                                                                             %
66 %                                                                             %
67 %   R e a d R L A I m a g e                                                   %
68 %                                                                             %
69 %                                                                             %
70 %                                                                             %
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72 %
73 %  ReadRLAImage() reads a run-length encoded Wavefront RLA image file
74 %  and returns it.  It allocates the memory necessary for the new Image
75 %  structure and returns a pointer to the new image.
76 %
77 %  Note:  This module was contributed by Lester Vecsey (master@internexus.net).
78 %
79 %  The format of the ReadRLAImage method is:
80 %
81 %      Image *ReadRLAImage(const ImageInfo *image_info,ExceptionInfo *exception)
82 %
83 %  A description of each parameter follows:
84 %
85 %    o image_info: the image info.
86 %
87 %    o exception: return any errors or warnings in this structure.
88 %
89 */
90 static Image *ReadRLAImage(const ImageInfo *image_info,ExceptionInfo *exception)
91 {
92   typedef struct _WindowFrame
93   {
94     short
95       left,
96       right,
97       bottom,
98       top;
99   } WindowFrame;
100
101   typedef struct _RLAInfo
102   {
103     WindowFrame
104       window,
105       active_window;
106
107     short
108       frame,
109       storage_type,
110       number_channels,
111       number_matte_channels,
112       number_auxiliary_channels,
113       revision;
114
115     char
116       gamma[16],
117       red_primary[24],
118       green_primary[24],
119       blue_primary[24],
120       white_point[24];
121
122     ssize_t
123       job_number;
124
125     char
126       name[128],
127       description[128],
128       program[64],
129       machine[32],
130       user[32],
131       date[20],
132       aspect[24],
133       aspect_ratio[8],
134       chan[32];
135
136     short
137       field;
138
139     char
140       time[12],
141       filter[32];
142
143     short
144       bits_per_channel,
145       matte_type,
146       matte_bits,
147       auxiliary_type,
148       auxiliary_bits;
149
150     char
151       auxiliary[32],
152       space[36];
153
154     ssize_t
155       next;
156   } RLAInfo;
157
158   Image
159     *image;
160
161   int
162     channel,
163     length,
164     runlength;
165
166   MagickBooleanType
167     status;
168
169   MagickOffsetType
170     offset;
171
172   register ssize_t
173     i,
174     x;
175
176   register Quantum
177     *q;
178
179   ssize_t
180     count,
181     *scanlines,
182     y;
183
184   RLAInfo
185     rla_info;
186
187   unsigned char
188     byte;
189
190   /*
191     Open image file.
192   */
193   assert(image_info != (const ImageInfo *) NULL);
194   assert(image_info->signature == MagickSignature);
195   if (image_info->debug != MagickFalse)
196     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
197       image_info->filename);
198   assert(exception != (ExceptionInfo *) NULL);
199   assert(exception->signature == MagickSignature);
200   image=AcquireImage(image_info,exception);
201   status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
202   if (status == MagickFalse)
203     {
204       image=DestroyImageList(image);
205       return((Image *) NULL);
206     }
207   rla_info.window.left=(short) ReadBlobMSBShort(image);
208   rla_info.window.right=(short) ReadBlobMSBShort(image);
209   rla_info.window.bottom=(short) ReadBlobMSBShort(image);
210   rla_info.window.top=(short) ReadBlobMSBShort(image);
211   rla_info.active_window.left=(short) ReadBlobMSBShort(image);
212   rla_info.active_window.right=(short) ReadBlobMSBShort(image);
213   rla_info.active_window.bottom=(short) ReadBlobMSBShort(image);
214   rla_info.active_window.top=(short) ReadBlobMSBShort(image);
215   rla_info.frame=(short) ReadBlobMSBShort(image);
216   rla_info.storage_type=(short) ReadBlobMSBShort(image);
217   rla_info.number_channels=(short) ReadBlobMSBShort(image);
218   rla_info.number_matte_channels=(short) ReadBlobMSBShort(image);
219   if (rla_info.number_channels == 0)
220     rla_info.number_channels=3;
221   rla_info.number_channels+=rla_info.number_matte_channels;
222   rla_info.number_auxiliary_channels=(short) ReadBlobMSBShort(image);
223   rla_info.revision=(short) ReadBlobMSBShort(image);
224   count=ReadBlob(image,16,(unsigned char *) rla_info.gamma);
225   count=ReadBlob(image,24,(unsigned char *) rla_info.red_primary);
226   count=ReadBlob(image,24,(unsigned char *) rla_info.green_primary);
227   count=ReadBlob(image,24,(unsigned char *) rla_info.blue_primary);
228   count=ReadBlob(image,24,(unsigned char *) rla_info.white_point);
229   rla_info.job_number=(int) ReadBlobMSBLong(image);
230   count=ReadBlob(image,128,(unsigned char *) rla_info.name);
231   count=ReadBlob(image,128,(unsigned char *) rla_info.description);
232   count=ReadBlob(image,64,(unsigned char *) rla_info.program);
233   count=ReadBlob(image,32,(unsigned char *) rla_info.machine);
234   count=ReadBlob(image,32,(unsigned char *) rla_info.user);
235   count=ReadBlob(image,20,(unsigned char *) rla_info.date);
236   count=ReadBlob(image,24,(unsigned char *) rla_info.aspect);
237   count=ReadBlob(image,8,(unsigned char *) rla_info.aspect_ratio);
238   count=ReadBlob(image,32,(unsigned char *) rla_info.chan);
239   rla_info.field=(short) ReadBlobMSBShort(image);
240   count=ReadBlob(image,12,(unsigned char *) rla_info.time);
241   count=ReadBlob(image,32,(unsigned char *) rla_info.filter);
242   rla_info.bits_per_channel=(short) ReadBlobMSBShort(image);
243   rla_info.matte_type=(short) ReadBlobMSBShort(image);
244   rla_info.matte_bits=(short) ReadBlobMSBShort(image);
245   rla_info.auxiliary_type=(short) ReadBlobMSBShort(image);
246   rla_info.auxiliary_bits=(short) ReadBlobMSBShort(image);
247   count=ReadBlob(image,32,(unsigned char *) rla_info.auxiliary);
248   count=ReadBlob(image,36,(unsigned char *) rla_info.space);
249   if ((size_t) count != 36)
250     ThrowReaderException(CorruptImageError,"UnableToReadImageData");
251   rla_info.next=(int) ReadBlobMSBLong(image);
252   /*
253     Initialize image structure.
254   */
255   image->alpha_trait=rla_info.number_matte_channels != 0 ? BlendPixelTrait : 
256     UndefinedPixelTrait;
257   image->columns=1UL*rla_info.active_window.right-rla_info.active_window.left+1;
258   image->rows=1UL*rla_info.active_window.top-rla_info.active_window.bottom+1;
259   if (image_info->ping != MagickFalse)
260     {
261       (void) CloseBlob(image);
262       return(GetFirstImageInList(image));
263     }
264   scanlines=(ssize_t *) AcquireQuantumMemory(image->rows,sizeof(*scanlines));
265   if (scanlines == (ssize_t *) NULL)
266     ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
267   if (*rla_info.description != '\0')
268     (void) SetImageProperty(image,"comment",rla_info.description,exception);
269   /*
270     Read offsets to each scanline data.
271   */
272   for (i=0; i < (ssize_t) image->rows; i++)
273     scanlines[i]=(int) ReadBlobMSBLong(image);
274   /*
275     Read image data.
276   */
277   x=0;
278   for (y=0; y < (ssize_t) image->rows; y++)
279   {
280     offset=SeekBlob(image,scanlines[image->rows-y-1],SEEK_SET);
281     if (offset < 0)
282       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
283     for (channel=0; channel < (int) rla_info.number_channels; channel++)
284     {
285       length=(int) ReadBlobMSBShort(image);
286       while (length > 0)
287       {
288         byte=(unsigned char) ReadBlobByte(image);
289         runlength=byte;
290         if (byte > 127)
291           runlength=byte-256;
292         length--;
293         if (length == 0)
294           break;
295         if (runlength < 0)
296           {
297             while (runlength < 0)
298             {
299               q=GetAuthenticPixels(image,(ssize_t) (x % image->columns),
300                 (ssize_t) (y % image->rows),1,1,exception);
301               if (q == (Quantum *) NULL)
302                 break;
303               byte=(unsigned char) ReadBlobByte(image);
304               length--;
305               switch (channel)
306               {
307                 case 0:
308                 {
309                   SetPixelRed(image,ScaleCharToQuantum(byte),q);
310                   break;
311                 }
312                 case 1:
313                 {
314                   SetPixelGreen(image,ScaleCharToQuantum(byte),q);
315                   break;
316                 }
317                 case 2:
318                 {
319                   SetPixelBlue(image,ScaleCharToQuantum(byte),q);
320                   break;
321                 }
322                 case 3:
323                 default:
324                 {
325                   SetPixelAlpha(image,ScaleCharToQuantum(byte),q);
326                   break;
327                 }
328               }
329               if (SyncAuthenticPixels(image,exception) == MagickFalse)
330                 break;
331               x++;
332               runlength++;
333             }
334             continue;
335           }
336         byte=(unsigned char) ReadBlobByte(image);
337         length--;
338         runlength++;
339         do
340         {
341           q=GetAuthenticPixels(image,(ssize_t) (x % image->columns),
342             (ssize_t) (y % image->rows),1,1,exception);
343           if (q == (Quantum *) NULL)
344             break;
345           switch (channel)
346           {
347             case 0:
348             {
349               SetPixelRed(image,ScaleCharToQuantum(byte),q);
350               break;
351             }
352             case 1:
353             {
354               SetPixelGreen(image,ScaleCharToQuantum(byte),q);
355               break;
356             }
357             case 2:
358             {
359               SetPixelBlue(image,ScaleCharToQuantum(byte),q);
360               break;
361             }
362             case 3:
363             default:
364             {
365               SetPixelAlpha(image,ScaleCharToQuantum(byte),q);
366               break;
367             }
368           }
369           if (SyncAuthenticPixels(image,exception) == MagickFalse)
370             break;
371           x++;
372           runlength--;
373         }
374         while (runlength > 0);
375       }
376     }
377     status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
378       image->rows);
379     if (status == MagickFalse)
380       break;
381   }
382   if (EOFBlob(image) != MagickFalse)
383     ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
384       image->filename);
385   (void) CloseBlob(image);
386   return(GetFirstImageInList(image));
387 }
388 \f
389 /*
390 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
391 %                                                                             %
392 %                                                                             %
393 %                                                                             %
394 %   R e g i s t e r R L A I m a g e                                           %
395 %                                                                             %
396 %                                                                             %
397 %                                                                             %
398 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
399 %
400 %  RegisterRLAImage() adds attributes for the RLA image format to
401 %  the list of supported formats.  The attributes include the image format
402 %  tag, a method to read and/or write the format, whether the format
403 %  supports the saving of more than one frame to the same file or blob,
404 %  whether the format supports native in-memory I/O, and a brief
405 %  description of the format.
406 %
407 %  The format of the RegisterRLAImage method is:
408 %
409 %      size_t RegisterRLAImage(void)
410 %
411 */
412 ModuleExport size_t RegisterRLAImage(void)
413 {
414   MagickInfo
415     *entry;
416
417   entry=SetMagickInfo("RLA");
418   entry->decoder=(DecodeImageHandler *) ReadRLAImage;
419   entry->adjoin=MagickFalse;
420   entry->seekable_stream=MagickTrue;
421   entry->description=ConstantString("Alias/Wavefront image");
422   entry->module=ConstantString("RLA");
423   (void) RegisterMagickInfo(entry);
424   return(MagickImageCoderSignature);
425 }
426 \f
427 /*
428 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
429 %                                                                             %
430 %                                                                             %
431 %                                                                             %
432 %   U n r e g i s t e r R L A I m a g e                                       %
433 %                                                                             %
434 %                                                                             %
435 %                                                                             %
436 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
437 %
438 %  UnregisterRLAImage() removes format registrations made by the
439 %  RLA module from the list of supported formats.
440 %
441 %  The format of the UnregisterRLAImage method is:
442 %
443 %      UnregisterRLAImage(void)
444 %
445 */
446 ModuleExport void UnregisterRLAImage(void)
447 {
448   (void) UnregisterMagickInfo("RLA");
449 }