]> granicus.if.org Git - imagemagick/blob - coders/pwp.c
...
[imagemagick] / coders / pwp.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                            PPPP   W   W  PPPP                               %
7 %                            P   P  W   W  P   P                              %
8 %                            PPPP   W   W  PPPP                               %
9 %                            P      W W W  P                                  %
10 %                            P       W W   P                                  %
11 %                                                                             %
12 %                                                                             %
13 %                    Read Seattle Film Works Image Format                     %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                   Cristy                                    %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2018 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 %    https://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/blob.h"
44 #include "MagickCore/blob-private.h"
45 #include "MagickCore/constitute.h"
46 #include "MagickCore/exception.h"
47 #include "MagickCore/exception-private.h"
48 #include "MagickCore/image.h"
49 #include "MagickCore/image-private.h"
50 #include "MagickCore/list.h"
51 #include "MagickCore/magick.h"
52 #include "MagickCore/memory_.h"
53 #include "MagickCore/monitor.h"
54 #include "MagickCore/monitor-private.h"
55 #include "MagickCore/resource_.h"
56 #include "MagickCore/quantum-private.h"
57 #include "MagickCore/static.h"
58 #include "MagickCore/string_.h"
59 #include "MagickCore/module.h"
60 \f
61 /*
62 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
63 %                                                                             %
64 %                                                                             %
65 %                                                                             %
66 %   I s P W P                                                                 %
67 %                                                                             %
68 %                                                                             %
69 %                                                                             %
70 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
71 %
72 %  IsPWP() returns MagickTrue if the image format type, identified by the
73 %  magick string, is PWP.
74 %
75 %  The format of the IsPWP method is:
76 %
77 %      MagickBooleanType IsPWP(const unsigned char *magick,const size_t length)
78 %
79 %  A description of each parameter follows:
80 %
81 %    o magick: compare image format pattern against these bytes.
82 %
83 %    o length: Specifies the length of the magick string.
84 %
85 %
86 */
87 static MagickBooleanType IsPWP(const unsigned char *magick,const size_t length)
88 {
89   if (length < 5)
90     return(MagickFalse);
91   if (LocaleNCompare((char *) magick,"SFW95",5) == 0)
92     return(MagickTrue);
93   return(MagickFalse);
94 }
95 \f
96 /*
97 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
98 %                                                                             %
99 %                                                                             %
100 %                                                                             %
101 %   R e a d P W P I m a g e                                                   %
102 %                                                                             %
103 %                                                                             %
104 %                                                                             %
105 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106 %
107 %  ReadPWPImage() reads a Seattle Film Works multi-image file and returns
108 %  it.  It allocates the memory necessary for the new Image structure and
109 %  returns a pointer to the new image.
110 %
111 %  The format of the ReadPWPImage method is:
112 %
113 %      Image *ReadPWPImage(const ImageInfo *image_info,ExceptionInfo *exception)
114 %
115 %  A description of each parameter follows:
116 %
117 %    o image_info: the image info.
118 %
119 %    o exception: return any errors or warnings in this structure.
120 %
121 */
122 static Image *ReadPWPImage(const ImageInfo *image_info,ExceptionInfo *exception)
123 {
124   FILE
125     *file;
126
127   Image
128     *image,
129     *next_image,
130     *pwp_image;
131
132   ImageInfo
133     *read_info;
134
135   int
136     c,
137     unique_file;
138
139   MagickBooleanType
140     status;
141
142   register Image
143     *p;
144
145   register ssize_t
146     i;
147
148   size_t
149     filesize,
150     length;
151
152   ssize_t
153     count;
154
155   unsigned char
156     magick[MagickPathExtent];
157
158   /*
159     Open image file.
160   */
161   assert(image_info != (const ImageInfo *) NULL);
162   assert(image_info->signature == MagickCoreSignature);
163   if (image_info->debug != MagickFalse)
164     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
165       image_info->filename);
166   assert(exception != (ExceptionInfo *) NULL);
167   assert(exception->signature == MagickCoreSignature);
168   pwp_image=AcquireImage(image_info,exception);
169   image=pwp_image;
170   status=OpenBlob(image_info,pwp_image,ReadBinaryBlobMode,exception);
171   if (status == MagickFalse)
172     return((Image *) NULL);
173   ResetMagickMemory(magick,0,sizeof(magick));
174   count=ReadBlob(pwp_image,5,magick);
175   if ((count != 5) || (LocaleNCompare((char *) magick,"SFW95",5) != 0))
176     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
177   read_info=CloneImageInfo(image_info);
178   (void) SetImageInfoProgressMonitor(read_info,(MagickProgressMonitor) NULL,
179     (void *) NULL);
180   SetImageInfoBlob(read_info,(void *) NULL,0);
181   unique_file=AcquireUniqueFileResource(read_info->filename);
182   for ( ; ; )
183   {
184     (void) memset(magick,0,sizeof(magick));
185     for (c=ReadBlobByte(pwp_image); c != EOF; c=ReadBlobByte(pwp_image))
186     {
187       for (i=0; i < 17; i++)
188         magick[i]=magick[i+1];
189       magick[17]=(unsigned char) c;
190       if (LocaleNCompare((char *) (magick+12),"SFW94A",6) == 0)
191         break;
192     }
193     if (c == EOF)
194       {
195         (void) RelinquishUniqueFileResource(read_info->filename);
196         ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
197       }
198     if (LocaleNCompare((char *) (magick+12),"SFW94A",6) != 0)
199       {
200         (void) RelinquishUniqueFileResource(read_info->filename);
201         ThrowReaderException(CorruptImageError,"ImproperImageHeader");
202       }
203     /*
204       Dump SFW image to a temporary file.
205     */
206     file=(FILE *) NULL;
207     if (unique_file != -1)
208       file=fdopen(unique_file,"wb");
209     if ((unique_file == -1) || (file == (FILE *) NULL))
210       {
211         (void) RelinquishUniqueFileResource(read_info->filename);
212         ThrowFileException(exception,FileOpenError,"UnableToWriteFile",
213           image->filename);
214         image=DestroyImageList(image);
215         return((Image *) NULL);
216       }
217     length=fwrite("SFW94A",1,6,file);
218     (void) length;
219     filesize=65535UL*magick[2]+256L*magick[1]+magick[0];
220     for (i=0; i < (ssize_t) filesize; i++)
221     {
222       c=ReadBlobByte(pwp_image);
223       if (c == EOF)
224         break;
225       (void) fputc(c,file);
226     }
227     (void) fclose(file);
228     if (c == EOF)
229       {
230         (void) RelinquishUniqueFileResource(read_info->filename);
231         ThrowReaderException(CorruptImageError,"UnexpectedEndOfFile");
232       }
233     next_image=ReadImage(read_info,exception);
234     if (next_image == (Image *) NULL)
235       break;
236     (void) FormatLocaleString(next_image->filename,MagickPathExtent,
237       "slide_%02ld.sfw",(long) next_image->scene);
238     if (image == (Image *) NULL)
239       image=next_image;
240     else
241       {
242         /*
243           Link image into image list.
244         */
245         for (p=image; p->next != (Image *) NULL; p=GetNextImageInList(p)) ;
246         next_image->previous=p;
247         next_image->scene=p->scene+1;
248         p->next=next_image;
249       }
250     if (image_info->number_scenes != 0)
251       if (next_image->scene >= (image_info->scene+image_info->number_scenes-1))
252         break;
253     status=SetImageProgress(image,LoadImagesTag,TellBlob(pwp_image),
254       GetBlobSize(pwp_image));
255     if (status == MagickFalse)
256       break;
257   }
258   if (unique_file != -1)
259     (void) close(unique_file);
260   (void) RelinquishUniqueFileResource(read_info->filename);
261   read_info=DestroyImageInfo(read_info);
262   if (image != (Image *) NULL)
263     {
264       if (EOFBlob(image) != MagickFalse)
265         {
266           char
267             *message;
268
269           message=GetExceptionMessage(errno);
270           (void) ThrowMagickException(exception,GetMagickModule(),
271             CorruptImageError,"UnexpectedEndOfFile","`%s': %s",image->filename,
272             message);
273           message=DestroyString(message);
274         }
275       (void) CloseBlob(image);
276     }
277   return(GetFirstImageInList(image));
278 }
279 \f
280 /*
281 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
282 %                                                                             %
283 %                                                                             %
284 %                                                                             %
285 %   R e g i s t e r P W P I m a g e                                           %
286 %                                                                             %
287 %                                                                             %
288 %                                                                             %
289 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
290 %
291 %  RegisterPWPImage() adds attributes for the PWP image format to
292 %  the list of supported formats.  The attributes include the image format
293 %  tag, a method to read and/or write the format, whether the format
294 %  supports the saving of more than one frame to the same file or blob,
295 %  whether the format supports native in-memory I/O, and a brief
296 %  description of the format.
297 %
298 %  The format of the RegisterPWPImage method is:
299 %
300 %      size_t RegisterPWPImage(void)
301 %
302 */
303 ModuleExport size_t RegisterPWPImage(void)
304 {
305   MagickInfo
306     *entry;
307
308   entry=AcquireMagickInfo("PWP","PWP","Seattle Film Works");
309   entry->decoder=(DecodeImageHandler *) ReadPWPImage;
310   entry->magick=(IsImageFormatHandler *) IsPWP;
311   (void) RegisterMagickInfo(entry);
312   return(MagickImageCoderSignature);
313 }
314 \f
315 /*
316 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
317 %                                                                             %
318 %                                                                             %
319 %                                                                             %
320 %   U n r e g i s t e r P W P I m a g e                                       %
321 %                                                                             %
322 %                                                                             %
323 %                                                                             %
324 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
325 %
326 %  UnregisterPWPImage() removes format registrations made by the
327 %  PWP module from the list of supported formats.
328 %
329 %  The format of the UnregisterPWPImage method is:
330 %
331 %      UnregisterPWPImage(void)
332 %
333 */
334 ModuleExport void UnregisterPWPImage(void)
335 {
336   (void) UnregisterMagickInfo("PWP");
337 }