blob: 0958bfefdd664951e1d62ec5a82c59e66627a725 [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 %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% July 1992 %
18% %
19% %
Cristy7ce65e72015-12-12 18:03:16 -050020% Copyright 1999-2016 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);
cristye1c94d92015-06-28 12:16:33 +0000163 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000164 if (image_info->debug != MagickFalse)
165 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
166 image_info->filename);
167 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000168 assert(exception->signature == MagickCoreSignature);
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 }
cristyacabb842014-12-14 23:36:33 +0000224 status=SetImageExtent(image,image->columns,image->rows,exception);
225 if (status == MagickFalse)
226 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000227 /*
228 Convert SCT raster image to pixel packets.
229 */
cristybb503372010-05-27 20:51:26 +0000230 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000231 {
cristybb503372010-05-27 20:51:26 +0000232 for (i=0; i < (ssize_t) separations; i++)
cristy3ed852e2009-09-05 21:47:34 +0000233 {
234 q=GetAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000235 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000236 break;
cristybb503372010-05-27 20:51:26 +0000237 for (x=0; x < (ssize_t) image->columns; x++)
cristy3ed852e2009-09-05 21:47:34 +0000238 {
239 pixel=(Quantum) ScaleCharToQuantum((unsigned char) ReadBlobByte(image));
240 if (image->colorspace == CMYKColorspace)
241 pixel=(Quantum) (QuantumRange-pixel);
242 switch (i)
243 {
244 case 0:
245 {
cristy4c08aed2011-07-01 19:47:50 +0000246 SetPixelRed(image,pixel,q);
247 SetPixelGreen(image,pixel,q);
248 SetPixelBlue(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000249 break;
250 }
251 case 1:
252 {
cristy4c08aed2011-07-01 19:47:50 +0000253 SetPixelGreen(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000254 break;
255 }
256 case 2:
257 {
cristy4c08aed2011-07-01 19:47:50 +0000258 SetPixelBlue(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000259 break;
260 }
261 case 3:
262 {
263 if (image->colorspace == CMYKColorspace)
cristy4c08aed2011-07-01 19:47:50 +0000264 SetPixelBlack(image,pixel,q);
cristy3ed852e2009-09-05 21:47:34 +0000265 break;
266 }
267 }
cristyed231572011-07-14 02:18:59 +0000268 q+=GetPixelChannels(image);
cristy3ed852e2009-09-05 21:47:34 +0000269 }
270 if (SyncAuthenticPixels(image,exception) == MagickFalse)
271 break;
272 if ((image->columns % 2) != 0)
273 (void) ReadBlobByte(image); /* pad */
274 }
cristycee97112010-05-28 00:44:52 +0000275 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristyc6da28e2011-04-28 01:41:35 +0000276 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000277 if (status == MagickFalse)
278 break;
279 }
280 if (EOFBlob(image) != MagickFalse)
281 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
282 image->filename);
283 (void) CloseBlob(image);
284 return(GetFirstImageInList(image));
285}
286
287/*
288%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
289% %
290% %
291% %
292% R e g i s t e r S C T I m a g e %
293% %
294% %
295% %
296%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
297%
298% RegisterSCTImage() adds attributes for the SCT image format to
299% the list of supported formats. The attributes include the image format
300% tag, a method to read and/or write the format, whether the format
301% supports the saving of more than one frame to the same file or blob,
302% whether the format supports native in-memory I/O, and a brief
303% description of the format.
304%
305% The format of the RegisterSCTImage method is:
306%
cristybb503372010-05-27 20:51:26 +0000307% size_t RegisterSCTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000308%
309*/
cristybb503372010-05-27 20:51:26 +0000310ModuleExport size_t RegisterSCTImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000311{
312 MagickInfo
313 *entry;
314
dirk06b627a2015-04-06 18:59:17 +0000315 entry=AcquireMagickInfo("SCT","SCT","Scitex HandShake");
cristy3ed852e2009-09-05 21:47:34 +0000316 entry->decoder=(DecodeImageHandler *) ReadSCTImage;
317 entry->magick=(IsImageFormatHandler *) IsSCT;
dirk08e9a112015-02-22 01:51:41 +0000318 entry->flags^=CoderAdjoinFlag;
cristy3ed852e2009-09-05 21:47:34 +0000319 (void) RegisterMagickInfo(entry);
320 return(MagickImageCoderSignature);
321}
322
323/*
324%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
325% %
326% %
327% %
328% U n r e g i s t e r S C T I m a g e %
329% %
330% %
331% %
332%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
333%
334% UnregisterSCTImage() removes format registrations made by the
335% SCT module from the list of supported formats.
336%
337% The format of the UnregisterSCTImage method is:
338%
339% UnregisterSCTImage(void)
340%
341*/
342ModuleExport void UnregisterSCTImage(void)
343{
344 (void) UnregisterMagickInfo("SCT");
345}