]> granicus.if.org Git - imagemagick/blob - coders/art.c
(no commit message)
[imagemagick] / coders / art.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                             AAA   RRRR   TTTTT                              %
7 %                            A   A  R   R    T                                %
8 %                            AAAAA  RRRR     T                                %
9 %                            A   A  R R      T                                %
10 %                            A   A  R  R     T                                %
11 %                                                                             %
12 %                                                                             %
13 %                 Support PFS: 1st Publisher Clip Art Format                  %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2014 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/attribute.h"
44 #include "MagickCore/blob.h"
45 #include "MagickCore/blob-private.h"
46 #include "MagickCore/cache.h"
47 #include "MagickCore/color-private.h"
48 #include "MagickCore/colormap.h"
49 #include "MagickCore/colorspace.h"
50 #include "MagickCore/colorspace-private.h"
51 #include "MagickCore/exception.h"
52 #include "MagickCore/exception-private.h"
53 #include "MagickCore/image.h"
54 #include "MagickCore/image-private.h"
55 #include "MagickCore/list.h"
56 #include "MagickCore/magick.h"
57 #include "MagickCore/memory_.h"
58 #include "MagickCore/monitor.h"
59 #include "MagickCore/monitor-private.h"
60 #include "MagickCore/quantum-private.h"
61 #include "MagickCore/static.h"
62 #include "MagickCore/string_.h"
63 #include "MagickCore/module.h"
64 \f
65 /*
66   Forward declarations.
67 */
68 static MagickBooleanType
69   WriteARTImage(const ImageInfo *,Image *,ExceptionInfo *);
70 \f
71 /*
72 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73 %                                                                             %
74 %                                                                             %
75 %                                                                             %
76 %   R e a d A R T I m a g e                                                   %
77 %                                                                             %
78 %                                                                             %
79 %                                                                             %
80 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
81 %
82 %  ReadARTImage() reads an image of raw bits in LSB order and returns it.
83 %  It allocates the memory necessary for the new Image structure and returns
84 %  a pointer to the new image.
85 %
86 %  The format of the ReadARTImage method is:
87 %
88 %      Image *ReadARTImage(const ImageInfo *image_info,
89 %        ExceptionInfo *exception)
90 %
91 %  A description of each parameter follows:
92 %
93 %    o image_info: the image info.
94 %
95 %    o exception: return any errors or warnings in this structure.
96 %
97 */
98 static Image *ReadARTImage(const ImageInfo *image_info,ExceptionInfo *exception)
99 {
100   Image
101     *image;
102
103   QuantumInfo
104     *quantum_info;
105
106   MagickBooleanType
107     status;
108
109   size_t
110     length;
111
112   ssize_t
113     count,
114     y;
115
116   unsigned char
117     *pixels;
118
119   /*
120     Open image file.
121   */
122   assert(image_info != (const ImageInfo *) NULL);
123   assert(image_info->signature == MagickSignature);
124   if (image_info->debug != MagickFalse)
125     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
126       image_info->filename);
127   assert(exception != (ExceptionInfo *) NULL);
128   assert(exception->signature == MagickSignature);
129   image=AcquireImage(image_info,exception);
130   status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
131   if (status == MagickFalse)
132     {
133       image=DestroyImageList(image);
134       return((Image *) NULL);
135     }
136   image->depth=1;
137   image->endian=MSBEndian;
138   (void) ReadBlobLSBShort(image);
139   image->columns=(size_t) ReadBlobLSBShort(image);
140   (void) ReadBlobLSBShort(image);
141   image->rows=(size_t) ReadBlobLSBShort(image);
142   if ((image->columns == 0) || (image->rows == 0))
143     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
144   if (image_info->ping != MagickFalse)
145     {
146       (void) CloseBlob(image);
147       return(GetFirstImageInList(image));
148     }
149   /*
150     Convert bi-level image to pixel packets.
151   */
152   SetImageColorspace(image,GRAYColorspace,exception);
153   quantum_info=AcquireQuantumInfo(image_info,image);
154   if (quantum_info == (QuantumInfo *) NULL)
155     ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
156   pixels=GetQuantumPixels(quantum_info);
157   length=GetQuantumExtent(image,quantum_info,GrayQuantum);
158   for (y=0; y < (ssize_t) image->rows; y++)
159   {
160     register Quantum
161       *restrict q;
162
163     q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
164     if (q == (Quantum *) NULL)
165       break;
166     count=ReadBlob(image,length,pixels);
167     if (count != (ssize_t) length)
168       ThrowReaderException(CorruptImageError,"UnableToReadImageData");
169     (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
170       GrayQuantum,pixels,exception);
171     count=ReadBlob(image,(size_t) (-(ssize_t) length) & 0x01,pixels);
172     if (SyncAuthenticPixels(image,exception) == MagickFalse)
173       break;
174     if (SetImageProgress(image,LoadImageTag,y,image->rows) == MagickFalse)
175       break;
176   }
177   SetQuantumImageType(image,GrayQuantum);
178   quantum_info=DestroyQuantumInfo(quantum_info);
179   if (EOFBlob(image) != MagickFalse)
180     ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
181       image->filename);
182   (void) CloseBlob(image);
183   return(GetFirstImageInList(image));
184 }
185 \f
186 /*
187 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
188 %                                                                             %
189 %                                                                             %
190 %                                                                             %
191 %   R e g i s t e r A R T I m a g e                                           %
192 %                                                                             %
193 %                                                                             %
194 %                                                                             %
195 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
196 %
197 %  RegisterARTImage() adds attributes for the ART image format to
198 %  the list of supported formats.  The attributes include the image format
199 %  tag, a method to read and/or write the format, whether the format
200 %  supports the saving of more than one frame to the same file or blob,
201 %  whether the format supports native in-memory I/O, and a brief
202 %  description of the format.
203 %
204 %  The format of the RegisterARTImage method is:
205 %
206 %      size_t RegisterARTImage(void)
207 %
208 */
209 ModuleExport size_t RegisterARTImage(void)
210 {
211   MagickInfo
212     *entry;
213
214   entry=SetMagickInfo("ART");
215   entry->decoder=(DecodeImageHandler *) ReadARTImage;
216   entry->encoder=(EncodeImageHandler *) WriteARTImage;
217   entry->raw=MagickTrue;
218   entry->adjoin=MagickFalse;
219   entry->description=ConstantString("PFS: 1st Publisher Clip Art");
220   entry->module=ConstantString("ART");
221   (void) RegisterMagickInfo(entry);
222   return(MagickImageCoderSignature);
223 }
224 \f
225 /*
226 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
227 %                                                                             %
228 %                                                                             %
229 %                                                                             %
230 %   U n r e g i s t e r A R T I m a g e                                       %
231 %                                                                             %
232 %                                                                             %
233 %                                                                             %
234 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
235 %
236 %  UnregisterARTImage() removes format registrations made by the
237 %  ART module from the list of supported formats.
238 %
239 %  The format of the UnregisterARTImage method is:
240 %
241 %      UnregisterARTImage(void)
242 %
243 */
244 ModuleExport void UnregisterARTImage(void)
245 {
246   (void) UnregisterMagickInfo("ART");
247 }
248 \f
249 /*
250 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
251 %                                                                             %
252 %                                                                             %
253 %                                                                             %
254 %   W r i t e A R T I m a g e                                                 %
255 %                                                                             %
256 %                                                                             %
257 %                                                                             %
258 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
259 %
260 %  WriteARTImage() writes an image of raw bits in LSB order to a file.
261 %
262 %  The format of the WriteARTImage method is:
263 %
264 %      MagickBooleanType WriteARTImage(const ImageInfo *image_info,
265 %        Image *image,ExceptionInfo *exception)
266 %
267 %  A description of each parameter follows.
268 %
269 %    o image_info: the image info.
270 %
271 %    o image:  The image.
272 %
273 %    o exception: return any errors or warnings in this structure.
274 %
275 */
276 static MagickBooleanType WriteARTImage(const ImageInfo *image_info,Image *image,
277   ExceptionInfo *exception)
278 {
279   MagickBooleanType
280     status;
281
282   QuantumInfo
283     *quantum_info;
284
285   register const Quantum
286     *p;
287
288   size_t
289     length;
290
291   ssize_t
292     count,
293     y;
294
295   unsigned char
296     *pixels;
297
298   /*
299     Open output image file.
300   */
301   assert(image_info != (const ImageInfo *) NULL);
302   assert(image_info->signature == MagickSignature);
303   assert(image != (Image *) NULL);
304   assert(image->signature == MagickSignature);
305   if (image->debug != MagickFalse)
306     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
307   assert(exception != (ExceptionInfo *) NULL);
308   assert(exception->signature == MagickSignature);
309   status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
310   if (status == MagickFalse)
311     return(status);
312   if ((image->columns > 65535UL) || (image->rows > 65535UL))
313     ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
314   if (IssRGBCompatibleColorspace(image->colorspace) == MagickFalse)
315     (void) TransformImageColorspace(image,sRGBColorspace,exception);
316   (void) SetImageType(image,BilevelType,exception);
317   image->endian=MSBEndian;
318   image->depth=1;
319   (void) WriteBlobLSBShort(image,0);
320   (void) WriteBlobLSBShort(image,(unsigned short) image->columns);
321   (void) WriteBlobLSBShort(image,0);
322   (void) WriteBlobLSBShort(image,(unsigned short) image->rows);
323   quantum_info=AcquireQuantumInfo(image_info,image);
324   pixels=GetQuantumPixels(quantum_info);
325   for (y=0; y < (ssize_t) image->rows; y++)
326   {
327     p=GetVirtualPixels(image,0,y,image->columns,1,exception);
328     if (p == (const Quantum *) NULL)
329       break;
330     length=ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
331       GrayQuantum,pixels,exception);
332     count=WriteBlob(image,length,pixels);
333     if (count != (ssize_t) length)
334       ThrowWriterException(CorruptImageError,"UnableToWriteImageData");
335     count=WriteBlob(image,(size_t) (-(ssize_t) length) & 0x01,pixels);
336     status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
337       image->rows);
338     if (status == MagickFalse)
339       break;
340   }
341   quantum_info=DestroyQuantumInfo(quantum_info);
342   (void) CloseBlob(image);
343   return(status);
344 }