]> granicus.if.org Git - imagemagick/blob - coders/sct.c
c0913d2c7012c829227c703abb2ef94da8f7387a
[imagemagick] / coders / sct.c
1 /*
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %                                                                             %
4 %                                                                             %
5 %                                                                             %
6 %                            SSSSS   CCCC  TTTTT                              %
7 %                            SS     C        T                                %
8 %                             SSS   C        T                                %
9 %                               SS  C        T                                %
10 %                            SSSSS   CCCC    T                                %
11 %                                                                             %
12 %                                                                             %
13 %                    Read Scitex HandShake Image Format                       %
14 %                                                                             %
15 %                              Software Design                                %
16 %                                John Cristy                                  %
17 %                                 July 1992                                   %
18 %                                                                             %
19 %                                                                             %
20 %  Copyright 1999-2012 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/blob.h"
44 #include "MagickCore/blob-private.h"
45 #include "MagickCore/cache.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/module.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/string-private.h"
61 \f
62 /*
63 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
64 %                                                                             %
65 %                                                                             %
66 %                                                                             %
67 %   I s S C T                                                                 %
68 %                                                                             %
69 %                                                                             %
70 %                                                                             %
71 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
72 %
73 %  IsSCT() returns MagickTrue if the image format type, identified by the
74 %  magick string, is SCT.
75 %
76 %  The format of the IsSCT method is:
77 %
78 %      MagickBooleanType IsSCT(const unsigned char *magick,const size_t length)
79 %
80 %  A description of each parameter follows:
81 %
82 %    o magick: compare image format pattern against these bytes.
83 %
84 %    o length: Specifies the length of the magick string.
85 %
86 */
87 static MagickBooleanType IsSCT(const unsigned char *magick,const size_t length)
88 {
89   if (length < 2)
90     return(MagickFalse);
91   if (LocaleNCompare((const char *) magick,"CT",2) == 0)
92     return(MagickTrue);
93   return(MagickFalse);
94 }
95 \f
96 /*
97 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
98 %                                                                             %
99 %                                                                             %
100 %                                                                             %
101 %   R e a d S C T I m a g e                                                   %
102 %                                                                             %
103 %                                                                             %
104 %                                                                             %
105 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106 %
107 %  ReadSCTImage() reads a Scitex image file and returns it.  It allocates
108 %  the memory necessary for the new Image structure and returns a pointer to
109 %  the new image.
110 %
111 %  The format of the ReadSCTImage method is:
112 %
113 %      Image *ReadSCTImage(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 *ReadSCTImage(const ImageInfo *image_info,ExceptionInfo *exception)
123 {
124   char
125     magick[2];
126
127   Image
128     *image;
129
130   MagickBooleanType
131     status;
132
133   double
134     height,
135     width;
136
137   Quantum
138     pixel;
139
140   register ssize_t
141     i,
142     x;
143
144   register Quantum
145     *q;
146
147   ssize_t
148     count,
149     y;
150
151   unsigned char
152     buffer[768];
153
154   size_t
155     separations,
156     separations_mask,
157     units;
158
159   /*
160     Open image file.
161   */
162   assert(image_info != (const ImageInfo *) NULL);
163   assert(image_info->signature == MagickSignature);
164   if (image_info->debug != MagickFalse)
165     (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
166       image_info->filename);
167   assert(exception != (ExceptionInfo *) NULL);
168   assert(exception->signature == MagickSignature);
169   image=AcquireImage(image_info,exception);
170   status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
171   if (status == MagickFalse)
172     {
173       image=DestroyImageList(image);
174       return((Image *) NULL);
175     }
176   /*
177     Read control block.
178   */
179   count=ReadBlob(image,80,buffer);
180   (void) count;
181   count=ReadBlob(image,2,(unsigned char *) magick);
182   if ((LocaleNCompare((char *) magick,"CT",2) != 0) &&
183       (LocaleNCompare((char *) magick,"LW",2) != 0) &&
184       (LocaleNCompare((char *) magick,"BM",2) != 0) &&
185       (LocaleNCompare((char *) magick,"PG",2) != 0) &&
186       (LocaleNCompare((char *) magick,"TX",2) != 0))
187     ThrowReaderException(CorruptImageError,"ImproperImageHeader");
188   if ((LocaleNCompare((char *) magick,"LW",2) == 0) ||
189       (LocaleNCompare((char *) magick,"BM",2) == 0) ||
190       (LocaleNCompare((char *) magick,"PG",2) == 0) ||
191       (LocaleNCompare((char *) magick,"TX",2) == 0))
192     ThrowReaderException(CoderError,"OnlyContinuousTonePictureSupported");
193   count=ReadBlob(image,174,buffer);
194   count=ReadBlob(image,768,buffer);
195   /*
196     Read paramter block.
197   */
198   units=1UL*ReadBlobByte(image);
199   if (units == 0)
200     image->units=PixelsPerCentimeterResolution;
201   separations=1UL*ReadBlobByte(image);
202   separations_mask=ReadBlobMSBShort(image);
203   count=ReadBlob(image,14,buffer);
204   buffer[14]='\0';
205   height=StringToDouble((char *) buffer,(char **) NULL);
206   count=ReadBlob(image,14,buffer);
207   width=StringToDouble((char *) buffer,(char **) NULL);
208   count=ReadBlob(image,12,buffer);
209   buffer[12]='\0';
210   image->rows=StringToUnsignedLong((char *) buffer);
211   count=ReadBlob(image,12,buffer);
212   image->columns=StringToUnsignedLong((char *) buffer);
213   count=ReadBlob(image,200,buffer);
214   count=ReadBlob(image,768,buffer);
215   if (separations_mask == 0x0f)
216     SetImageColorspace(image,CMYKColorspace,exception);
217   image->resolution.x=1.0*image->columns/width;
218   image->resolution.y=1.0*image->rows/height;
219   if (image_info->ping != MagickFalse)
220     {
221       (void) CloseBlob(image);
222       return(GetFirstImageInList(image));
223     }
224   /*
225     Convert SCT raster image to pixel packets.
226   */
227   for (y=0; y < (ssize_t) image->rows; y++)
228   {
229     for (i=0; i < (ssize_t) separations; i++)
230     {
231       q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
232       if (q == (Quantum *) NULL)
233         break;
234       for (x=0; x < (ssize_t) image->columns; x++)
235       {
236         pixel=(Quantum) ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
237         if (image->colorspace == CMYKColorspace)
238           pixel=(Quantum) (QuantumRange-pixel);
239         switch (i)
240         {
241           case 0:
242           {
243             SetPixelRed(image,pixel,q);
244             SetPixelGreen(image,pixel,q);
245             SetPixelBlue(image,pixel,q);
246             break;
247           }
248           case 1:
249           {
250             SetPixelGreen(image,pixel,q);
251             break;
252           }
253           case 2:
254           {
255             SetPixelBlue(image,pixel,q);
256             break;
257           }
258           case 3: 
259           {
260             if (image->colorspace == CMYKColorspace)
261               SetPixelBlack(image,pixel,q);
262             break;
263           }
264         }
265         q+=GetPixelChannels(image);
266       }
267       if (SyncAuthenticPixels(image,exception) == MagickFalse)
268         break;
269       if ((image->columns % 2) != 0)
270         (void) ReadBlobByte(image);  /* pad */
271     }
272     status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
273       image->rows);
274     if (status == MagickFalse)
275       break;
276   }
277   if (EOFBlob(image) != MagickFalse)
278     ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
279       image->filename);
280   (void) CloseBlob(image);
281   return(GetFirstImageInList(image));
282 }
283 \f
284 /*
285 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
286 %                                                                             %
287 %                                                                             %
288 %                                                                             %
289 %   R e g i s t e r S C T I m a g e                                           %
290 %                                                                             %
291 %                                                                             %
292 %                                                                             %
293 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
294 %
295 %  RegisterSCTImage() adds attributes for the SCT image format to
296 %  the list of supported formats.  The attributes include the image format
297 %  tag, a method to read and/or write the format, whether the format
298 %  supports the saving of more than one frame to the same file or blob,
299 %  whether the format supports native in-memory I/O, and a brief
300 %  description of the format.
301 %
302 %  The format of the RegisterSCTImage method is:
303 %
304 %      size_t RegisterSCTImage(void)
305 %
306 */
307 ModuleExport size_t RegisterSCTImage(void)
308 {
309   MagickInfo
310     *entry;
311
312   entry=SetMagickInfo("SCT");
313   entry->decoder=(DecodeImageHandler *) ReadSCTImage;
314   entry->magick=(IsImageFormatHandler *) IsSCT;
315   entry->adjoin=MagickFalse;
316   entry->description=ConstantString("Scitex HandShake");
317   entry->module=ConstantString("SCT");
318   (void) RegisterMagickInfo(entry);
319   return(MagickImageCoderSignature);
320 }
321 \f
322 /*
323 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
324 %                                                                             %
325 %                                                                             %
326 %                                                                             %
327 %   U n r e g i s t e r S C T I m a g e                                       %
328 %                                                                             %
329 %                                                                             %
330 %                                                                             %
331 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
332 %
333 %  UnregisterSCTImage() removes format registrations made by the
334 %  SCT module from the list of supported formats.
335 %
336 %  The format of the UnregisterSCTImage method is:
337 %
338 %      UnregisterSCTImage(void)
339 %
340 */
341 ModuleExport void UnregisterSCTImage(void)
342 {
343   (void) UnregisterMagickInfo("SCT");
344 }