blob: c0913d2c7012c829227c703abb2ef94da8f7387a [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
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% %
cristy1454be72011-12-19 01:52:48 +000020% Copyright 1999-2012 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/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"
cristy3ed852e2009-09-05 21:47:34 +000061
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*/
87static 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
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*/
122static Image *ReadSCTImage(const ImageInfo *image_info,ExceptionInfo *exception)
123{
124 char
125 magick[2];
126
127 Image
128 *image;
129
cristy3ed852e2009-09-05 21:47:34 +0000130 MagickBooleanType
131 status;
132
cristya19f1d72012-08-07 18:24:38 +0000133 double
cristy3ed852e2009-09-05 21:47:34 +0000134 height,
135 width;
136
137 Quantum
138 pixel;
139
cristybb503372010-05-27 20:51:26 +0000140 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000141 i,
142 x;
143
cristy4c08aed2011-07-01 19:47:50 +0000144 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000145 *q;
146
147 ssize_t
cristyc6da28e2011-04-28 01:41:35 +0000148 count,
149 y;
cristy3ed852e2009-09-05 21:47:34 +0000150
151 unsigned char
152 buffer[768];
153
cristybb503372010-05-27 20:51:26 +0000154 size_t
cristy3ed852e2009-09-05 21:47:34 +0000155 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);
cristy9950d572011-10-01 18:22:35 +0000169 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000170 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);
cristyda16f162011-02-19 23:52:17 +0000180 (void) count;
cristy3ed852e2009-09-05 21:47:34 +0000181 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';
cristydbdd0e32011-11-04 23:29:40 +0000205 height=StringToDouble((char *) buffer,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +0000206 count=ReadBlob(image,14,buffer);
cristydbdd0e32011-11-04 23:29:40 +0000207 width=StringToDouble((char *) buffer,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +0000208 count=ReadBlob(image,12,buffer);
209 buffer[12]='\0';
cristy5131f3e2009-12-18 03:09:10 +0000210 image->rows=StringToUnsignedLong((char *) buffer);
cristy3ed852e2009-09-05 21:47:34 +0000211 count=ReadBlob(image,12,buffer);
cristy5131f3e2009-12-18 03:09:10 +0000212 image->columns=StringToUnsignedLong((char *) buffer);
cristy3ed852e2009-09-05 21:47:34 +0000213 count=ReadBlob(image,200,buffer);
214 count=ReadBlob(image,768,buffer);
215 if (separations_mask == 0x0f)
cristye2c4f182012-05-12 14:11:53 +0000216 SetImageColorspace(image,CMYKColorspace,exception);
cristy2a11bef2011-10-28 18:33:11 +0000217 image->resolution.x=1.0*image->columns/width;
218 image->resolution.y=1.0*image->rows/height;
cristy3ed852e2009-09-05 21:47:34 +0000219 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 */
cristybb503372010-05-27 20:51:26 +0000227 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000228 {
cristybb503372010-05-27 20:51:26 +0000229 for (i=0; i < (ssize_t) separations; i++)
cristy3ed852e2009-09-05 21:47:34 +0000230 {
231 q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000232 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000233 break;
cristybb503372010-05-27 20:51:26 +0000234 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000235 {
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 {
cristy4c08aed2011-07-01 19:47:50 +0000243 SetPixelRed(image,pixel,q);
244 SetPixelGreen(image,pixel,q);
245 SetPixelBlue(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000246 break;
247 }
248 case 1:
249 {
cristy4c08aed2011-07-01 19:47:50 +0000250 SetPixelGreen(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000251 break;
252 }
253 case 2:
254 {
cristy4c08aed2011-07-01 19:47:50 +0000255 SetPixelBlue(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000256 break;
257 }
258 case 3:
259 {
260 if (image->colorspace == CMYKColorspace)
cristy4c08aed2011-07-01 19:47:50 +0000261 SetPixelBlack(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000262 break;
263 }
264 }
cristyed231572011-07-14 02:18:59 +0000265 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000266 }
267 if (SyncAuthenticPixels(image,exception) == MagickFalse)
268 break;
269 if ((image->columns % 2) != 0)
270 (void) ReadBlobByte(image); /* pad */
271 }
cristycee97112010-05-28 00:44:52 +0000272 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristyc6da28e2011-04-28 01:41:35 +0000273 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000274 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
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%
cristybb503372010-05-27 20:51:26 +0000304% size_t RegisterSCTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000305%
306*/
cristybb503372010-05-27 20:51:26 +0000307ModuleExport size_t RegisterSCTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000308{
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
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*/
341ModuleExport void UnregisterSCTImage(void)
342{
343 (void) UnregisterMagickInfo("SCT");
344}