blob: 00a1d328e7eade2a34013a799a47fdc510fd600e [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
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 %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
18% %
19% %
cristyb56bb242014-11-25 17:12:48 +000020% Copyright 1999-2015 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/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"
cristy3ed852e2009-09-05 21:47:34 +000060
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*/
87static 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
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*/
122static 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
cristybb503372010-05-27 20:51:26 +0000145 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000146 i;
147
cristy374f5532010-01-13 03:26:03 +0000148 size_t
cristy802d3642011-04-27 02:02:41 +0000149 filesize,
cristy374f5532010-01-13 03:26:03 +0000150 length;
151
cristy3ed852e2009-09-05 21:47:34 +0000152 ssize_t
153 count;
154
155 unsigned char
156 magick[MaxTextExtent];
157
cristy3ed852e2009-09-05 21:47:34 +0000158 /*
159 Open image file.
160 */
161 assert(image_info != (const ImageInfo *) NULL);
162 assert(image_info->signature == MagickSignature);
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 == MagickSignature);
cristy9950d572011-10-01 18:22:35 +0000168 pwp_image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000169 image=pwp_image;
170 status=OpenBlob(image_info,pwp_image,ReadBinaryBlobMode,exception);
171 if (status == MagickFalse)
172 return((Image *) NULL);
173 count=ReadBlob(pwp_image,5,magick);
174 if ((count == 0) || (LocaleNCompare((char *) magick,"SFW95",5) != 0))
175 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
176 read_info=CloneImageInfo(image_info);
177 (void) SetImageInfoProgressMonitor(read_info,(MagickProgressMonitor) NULL,
178 (void *) NULL);
179 SetImageInfoBlob(read_info,(void *) NULL,0);
180 unique_file=AcquireUniqueFileResource(read_info->filename);
181 for ( ; ; )
182 {
183 for (c=ReadBlobByte(pwp_image); c != EOF; c=ReadBlobByte(pwp_image))
184 {
185 for (i=0; i < 17; i++)
186 magick[i]=magick[i+1];
187 magick[17]=(unsigned char) c;
188 if (LocaleNCompare((char *) (magick+12),"SFW94A",6) == 0)
189 break;
190 }
191 if (c == EOF)
192 break;
193 if (LocaleNCompare((char *) (magick+12),"SFW94A",6) != 0)
dirkce6b1222014-11-06 21:09:46 +0000194 {
195 (void) RelinquishUniqueFileResource(read_info->filename);
196 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
197 }
cristy3ed852e2009-09-05 21:47:34 +0000198 /*
199 Dump SFW image to a temporary file.
200 */
201 file=(FILE *) NULL;
202 if (unique_file != -1)
203 file=fdopen(unique_file,"wb");
204 if ((unique_file == -1) || (file == (FILE *) NULL))
205 {
dirkce6b1222014-11-06 21:09:46 +0000206 (void) RelinquishUniqueFileResource(read_info->filename);
cristy3ed852e2009-09-05 21:47:34 +0000207 ThrowFileException(exception,FileOpenError,"UnableToWriteFile",
208 image->filename);
209 image=DestroyImageList(image);
210 return((Image *) NULL);
211 }
cristy374f5532010-01-13 03:26:03 +0000212 length=fwrite("SFW94A",1,6,file);
cristyda16f162011-02-19 23:52:17 +0000213 (void) length;
cristy3ed852e2009-09-05 21:47:34 +0000214 filesize=65535UL*magick[2]+256L*magick[1]+magick[0];
cristybb503372010-05-27 20:51:26 +0000215 for (i=0; i < (ssize_t) filesize; i++)
cristy3ed852e2009-09-05 21:47:34 +0000216 {
217 c=ReadBlobByte(pwp_image);
218 (void) fputc(c,file);
219 }
220 (void) fclose(file);
221 next_image=ReadImage(read_info,exception);
222 if (next_image == (Image *) NULL)
223 break;
cristyb51dff52011-05-19 16:55:47 +0000224 (void) FormatLocaleString(next_image->filename,MaxTextExtent,
cristyf2faecf2010-05-28 19:19:36 +0000225 "slide_%02ld.sfw",(long) next_image->scene);
cristy3ed852e2009-09-05 21:47:34 +0000226 if (image == (Image *) NULL)
227 image=next_image;
228 else
229 {
230 /*
231 Link image into image list.
232 */
233 for (p=image; p->next != (Image *) NULL; p=GetNextImageInList(p)) ;
234 next_image->previous=p;
235 next_image->scene=p->scene+1;
236 p->next=next_image;
237 }
238 if (image_info->number_scenes != 0)
239 if (next_image->scene >= (image_info->scene+image_info->number_scenes-1))
240 break;
241 status=SetImageProgress(image,LoadImagesTag,TellBlob(pwp_image),
242 GetBlobSize(pwp_image));
243 if (status == MagickFalse)
244 break;
245 }
cristyf2a82ee2014-05-26 17:49:54 +0000246 if (unique_file != -1)
247 (void) close(unique_file);
cristy3ed852e2009-09-05 21:47:34 +0000248 (void) RelinquishUniqueFileResource(read_info->filename);
249 read_info=DestroyImageInfo(read_info);
250 (void) CloseBlob(pwp_image);
251 pwp_image=DestroyImage(pwp_image);
252 if (EOFBlob(image) != MagickFalse)
253 {
254 char
255 *message;
256
257 message=GetExceptionMessage(errno);
258 (void) ThrowMagickException(exception,GetMagickModule(),CorruptImageError,
259 "UnexpectedEndOfFile","`%s': %s",image->filename,message);
260 message=DestroyString(message);
261 }
262 (void) CloseBlob(image);
263 return(GetFirstImageInList(image));
264}
265
266/*
267%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
268% %
269% %
270% %
271% R e g i s t e r P W P I m a g e %
272% %
273% %
274% %
275%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
276%
277% RegisterPWPImage() adds attributes for the PWP image format to
278% the list of supported formats. The attributes include the image format
279% tag, a method to read and/or write the format, whether the format
280% supports the saving of more than one frame to the same file or blob,
281% whether the format supports native in-memory I/O, and a brief
282% description of the format.
283%
284% The format of the RegisterPWPImage method is:
285%
cristybb503372010-05-27 20:51:26 +0000286% size_t RegisterPWPImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000287%
288*/
cristybb503372010-05-27 20:51:26 +0000289ModuleExport size_t RegisterPWPImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000290{
291 MagickInfo
292 *entry;
293
294 entry=SetMagickInfo("PWP");
295 entry->decoder=(DecodeImageHandler *) ReadPWPImage;
296 entry->magick=(IsImageFormatHandler *) IsPWP;
297 entry->description=ConstantString("Seattle Film Works");
298 entry->module=ConstantString("PWP");
299 (void) RegisterMagickInfo(entry);
300 return(MagickImageCoderSignature);
301}
302
303/*
304%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
305% %
306% %
307% %
308% U n r e g i s t e r P W P I m a g e %
309% %
310% %
311% %
312%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
313%
314% UnregisterPWPImage() removes format registrations made by the
315% PWP module from the list of supported formats.
316%
317% The format of the UnregisterPWPImage method is:
318%
319% UnregisterPWPImage(void)
320%
321*/
322ModuleExport void UnregisterPWPImage(void)
323{
324 (void) UnregisterMagickInfo("PWP");
325}