blob: c64751b551a68ede8930a91625043ec4e1a61ed2 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% CCCC IIIII N N %
7% C I NN N %
8% C I N N N %
9% C I N NN %
10% CCCC IIIII N N %
11% %
12% %
13% Read/Write Kodak Cineon Image Format %
14% Cineon Image Format is a subset of SMTPE CIN %
15% %
16% %
17% Software Design %
cristyde984cd2013-12-01 14:49:27 +000018% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000019% Kelly Bergougnoux %
20% October 2003 %
21% %
22% %
Cristy7ce65e72015-12-12 18:03:16 -050023% Copyright 1999-2016 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000024% dedicated to making software imaging solutions freely available. %
25% %
26% You may not use this file except in compliance with the License. You may %
27% obtain a copy of the License at %
28% %
29% http://www.imagemagick.org/script/license.php %
30% %
31% Unless required by applicable law or agreed to in writing, software %
32% distributed under the License is distributed on an "AS IS" BASIS, %
33% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
34% See the License for the specific language governing permissions and %
35% limitations under the License. %
36% %
37% %
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39%
40% Cineon image file format draft is available at
41% http://www.cineon.com/ff_draft.php.
42%
43%
44*/
45
46/*
47 Include declarations.
48*/
cristy4c08aed2011-07-01 19:47:50 +000049#include "MagickCore/studio.h"
cristy76ce6e12013-04-05 14:33:38 +000050#include "MagickCore/artifact.h"
cristy4c08aed2011-07-01 19:47:50 +000051#include "MagickCore/blob.h"
52#include "MagickCore/blob-private.h"
53#include "MagickCore/cache.h"
54#include "MagickCore/colorspace.h"
55#include "MagickCore/exception.h"
56#include "MagickCore/exception-private.h"
57#include "MagickCore/image.h"
58#include "MagickCore/image-private.h"
59#include "MagickCore/list.h"
60#include "MagickCore/magick.h"
61#include "MagickCore/memory_.h"
62#include "MagickCore/monitor.h"
63#include "MagickCore/monitor-private.h"
64#include "MagickCore/option.h"
65#include "MagickCore/profile.h"
66#include "MagickCore/property.h"
67#include "MagickCore/quantum-private.h"
68#include "MagickCore/quantum-private.h"
69#include "MagickCore/static.h"
70#include "MagickCore/string_.h"
71#include "MagickCore/string-private.h"
72#include "MagickCore/module.h"
cristy3ed852e2009-09-05 21:47:34 +000073
74/*
75 Typedef declaration.
76*/
77typedef struct _CINDataFormatInfo
78{
79 unsigned char
80 interleave,
81 packing,
82 sign,
83 sense;
84
cristyf6fe0a12010-05-30 00:44:47 +000085 size_t
cristy3ed852e2009-09-05 21:47:34 +000086 line_pad,
87 channel_pad;
88
89 unsigned char
90 reserve[20];
91} CINDataFormatInfo;
92
93typedef struct _CINFileInfo
94{
cristyf6fe0a12010-05-30 00:44:47 +000095 size_t
cristy3ed852e2009-09-05 21:47:34 +000096 magic,
97 image_offset,
98 generic_length,
99 industry_length,
100 user_length,
101 file_size;
102
103 char
104 version[8],
105 filename[100],
106 create_date[12],
107 create_time[12],
108 reserve[36];
109} CINFileInfo;
110
111typedef struct _CINFilmInfo
112{
113 char
114 id,
115 type,
116 offset,
117 reserve1;
118
cristyf6fe0a12010-05-30 00:44:47 +0000119 size_t
cristy3ed852e2009-09-05 21:47:34 +0000120 prefix,
121 count;
122
123 char
124 format[32];
125
cristyf6fe0a12010-05-30 00:44:47 +0000126 size_t
cristy3ed852e2009-09-05 21:47:34 +0000127 frame_position;
128
129 float
130 frame_rate;
131
132 char
133 frame_id[32],
134 slate_info[200],
135 reserve[740];
136} CINFilmInfo;
137
138typedef struct _CINImageChannel
139{
140 unsigned char
141 designator[2],
142 bits_per_pixel,
143 reserve;
144
cristyf6fe0a12010-05-30 00:44:47 +0000145 size_t
cristy3ed852e2009-09-05 21:47:34 +0000146 pixels_per_line,
147 lines_per_image;
148
149 float
150 min_data,
151 min_quantity,
152 max_data,
153 max_quantity;
154} CINImageChannel;
155
156typedef struct _CINImageInfo
157{
158 unsigned char
159 orientation,
160 number_channels,
161 reserve1[2];
162
163 CINImageChannel
164 channel[8];
165
166 float
167 white_point[2],
168 red_primary_chromaticity[2],
169 green_primary_chromaticity[2],
170 blue_primary_chromaticity[2];
171
172 char
173 label[200],
174 reserve[28];
175} CINImageInfo;
176
177typedef struct _CINOriginationInfo
178{
cristyf6fe0a12010-05-30 00:44:47 +0000179 ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000180 x_offset,
181 y_offset;
182
183 char
184 filename[100],
185 create_date[12],
186 create_time[12],
187 device[64],
188 model[32],
189 serial[32];
190
191 float
192 x_pitch,
193 y_pitch,
194 gamma;
195
196 char
197 reserve[40];
198} CINOriginationInfo;
199
200typedef struct _CINUserInfo
201{
202 char
203 id[32];
204} CINUserInfo;
205
206typedef struct CINInfo
207{
208 CINFileInfo
209 file;
210
211 CINImageInfo
212 image;
213
214 CINDataFormatInfo
215 data_format;
216
217 CINOriginationInfo
218 origination;
219
220 CINFilmInfo
221 film;
222
223 CINUserInfo
224 user;
225} CINInfo;
226
227/*
228 Forward declaractions.
229*/
230static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +0000231 WriteCINImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000232
233/*
234%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
235% %
236% %
237% %
238% I s C I N E O N %
239% %
240% %
241% %
242%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
243%
244% IsCIN() returns MagickTrue if the image format type, identified by the magick
245% string, is CIN.
246%
247% The format of the IsCIN method is:
248%
249% MagickBooleanType IsCIN(const unsigned char *magick,const size_t length)
250%
251% A description of each parameter follows:
252%
253% o magick: compare image format pattern against these bytes.
254%
255% o length: Specifies the length of the magick string.
256%
257*/
258static MagickBooleanType IsCIN(const unsigned char *magick,const size_t length)
259{
260 if (length < 4)
261 return(MagickFalse);
262 if (memcmp(magick,"\200\052\137\327",4) == 0)
263 return(MagickTrue);
264 return(MagickFalse);
265}
266
267/*
268%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
269% %
270% %
271% %
272% R e a d C I N E O N I m a g e %
273% %
274% %
275% %
276%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
277%
278% ReadCINImage() reads an CIN X image file and returns it. It allocates
279% the memory necessary for the new Image structure and returns a point to the
280% new image.
281%
282% The format of the ReadCINImage method is:
283%
284% Image *ReadCINImage(const ImageInfo *image_info,
285% ExceptionInfo *exception)
286%
287% A description of each parameter follows:
288%
289% o image_info: the image info.
290%
291% o exception: return any errors or warnings in this structure.
292%
293*/
294
cristybb503372010-05-27 20:51:26 +0000295static size_t GetBytesPerRow(size_t columns,
296 size_t samples_per_pixel,size_t bits_per_pixel,
cristy3ed852e2009-09-05 21:47:34 +0000297 MagickBooleanType pad)
298{
299 size_t
300 bytes_per_row;
301
302 switch (bits_per_pixel)
303 {
304 case 1:
305 {
306 bytes_per_row=4*(((size_t) samples_per_pixel*columns*
307 bits_per_pixel+31)/32);
308 break;
309 }
310 case 8:
311 default:
312 {
313 bytes_per_row=4*(((size_t) samples_per_pixel*columns*
314 bits_per_pixel+31)/32);
315 break;
316 }
317 case 10:
318 {
319 if (pad == MagickFalse)
320 {
321 bytes_per_row=4*(((size_t) samples_per_pixel*columns*
322 bits_per_pixel+31)/32);
323 break;
324 }
325 bytes_per_row=4*(((size_t) (32*((samples_per_pixel*columns+2)/3))+31)/32);
326 break;
327 }
328 case 12:
329 {
330 if (pad == MagickFalse)
331 {
332 bytes_per_row=4*(((size_t) samples_per_pixel*columns*
333 bits_per_pixel+31)/32);
334 break;
335 }
336 bytes_per_row=2*(((size_t) (16*samples_per_pixel*columns)+15)/16);
337 break;
338 }
339 case 16:
340 {
341 bytes_per_row=2*(((size_t) samples_per_pixel*columns*
342 bits_per_pixel+8)/16);
343 break;
344 }
345 case 32:
346 {
347 bytes_per_row=4*(((size_t) samples_per_pixel*columns*
348 bits_per_pixel+31)/32);
349 break;
350 }
351 case 64:
352 {
353 bytes_per_row=8*(((size_t) samples_per_pixel*columns*
354 bits_per_pixel+63)/64);
355 break;
356 }
357 }
358 return(bytes_per_row);
359}
360
361static inline MagickBooleanType IsFloatDefined(const float value)
362{
363 union
364 {
cristy97450ff2010-12-29 17:29:17 +0000365 unsigned int
cristy3ed852e2009-09-05 21:47:34 +0000366 unsigned_value;
367
368 double
369 float_value;
370 } quantum;
371
cristy97450ff2010-12-29 17:29:17 +0000372 quantum.unsigned_value=0U;
cristy3ed852e2009-09-05 21:47:34 +0000373 quantum.float_value=value;
cristy97450ff2010-12-29 17:29:17 +0000374 if (quantum.unsigned_value == 0U)
cristy3ed852e2009-09-05 21:47:34 +0000375 return(MagickFalse);
376 return(MagickTrue);
377}
378
cristy4e82e512011-04-24 01:33:42 +0000379static Image *ReadCINImage(const ImageInfo *image_info,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000380{
381#define MonoColorType 1
382#define RGBColorType 3
383
cristye6f04802014-05-04 01:41:20 +0000384 char
cristy151b66d2015-04-15 10:50:31 +0000385 property[MagickPathExtent];
cristye6f04802014-05-04 01:41:20 +0000386
cristy3ed852e2009-09-05 21:47:34 +0000387 CINInfo
388 cin;
389
cristyb3f97ae2015-05-18 12:29:32 +0000390 const unsigned char
cristybd797f12015-01-24 20:42:32 +0000391 *pixels;
392
cristy3ed852e2009-09-05 21:47:34 +0000393 Image
394 *image;
395
cristy3ed852e2009-09-05 21:47:34 +0000396 MagickBooleanType
397 status;
398
399 MagickOffsetType
400 offset;
401
402 QuantumInfo
403 *quantum_info;
404
405 QuantumType
406 quantum_type;
407
cristybb503372010-05-27 20:51:26 +0000408 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000409 i;
410
cristy4c08aed2011-07-01 19:47:50 +0000411 register Quantum
cristy3ed852e2009-09-05 21:47:34 +0000412 *q;
413
414 size_t
cristy5a128302011-05-17 12:42:40 +0000415 length;
cristy3ed852e2009-09-05 21:47:34 +0000416
417 ssize_t
cristy4e82e512011-04-24 01:33:42 +0000418 count,
419 y;
cristy3ed852e2009-09-05 21:47:34 +0000420
421 unsigned char
cristybd797f12015-01-24 20:42:32 +0000422 magick[4];
cristy3ed852e2009-09-05 21:47:34 +0000423
cristy3ed852e2009-09-05 21:47:34 +0000424 /*
425 Open image file.
426 */
427 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000428 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000429 if (image_info->debug != MagickFalse)
430 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
431 image_info->filename);
432 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000433 assert(exception->signature == MagickCoreSignature);
cristy9950d572011-10-01 18:22:35 +0000434 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000435 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
436 if (status == MagickFalse)
437 {
438 image=DestroyImageList(image);
439 return((Image *) NULL);
440 }
441 /*
442 File information.
443 */
444 offset=0;
cristya9c6cd62011-05-18 21:11:35 +0000445 count=ReadBlob(image,4,magick);
cristy3ed852e2009-09-05 21:47:34 +0000446 offset+=count;
447 if ((count != 4) ||
448 ((LocaleNCompare((char *) magick,"\200\052\137\327",4) != 0)))
449 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristya9c6cd62011-05-18 21:11:35 +0000450 image->endian=(magick[0] == 0x80) && (magick[1] == 0x2a) &&
451 (magick[2] == 0x5f) && (magick[3] == 0xd7) ? MSBEndian : LSBEndian;
cristy3ed852e2009-09-05 21:47:34 +0000452 cin.file.image_offset=ReadBlobLong(image);
453 offset+=4;
454 cin.file.generic_length=ReadBlobLong(image);
455 offset+=4;
456 cin.file.industry_length=ReadBlobLong(image);
457 offset+=4;
458 cin.file.user_length=ReadBlobLong(image);
459 offset+=4;
460 cin.file.file_size=ReadBlobLong(image);
461 offset+=4;
462 offset+=ReadBlob(image,sizeof(cin.file.version),(unsigned char *)
463 cin.file.version);
cristye6f04802014-05-04 01:41:20 +0000464 (void) CopyMagickString(property,cin.file.version,sizeof(cin.file.version));
465 (void) SetImageProperty(image,"dpx:file.version",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000466 offset+=ReadBlob(image,sizeof(cin.file.filename),(unsigned char *)
467 cin.file.filename);
cristye6f04802014-05-04 01:41:20 +0000468 (void) CopyMagickString(property,cin.file.filename,sizeof(cin.file.filename));
469 (void) SetImageProperty(image,"dpx:file.filename",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000470 offset+=ReadBlob(image,sizeof(cin.file.create_date),(unsigned char *)
471 cin.file.create_date);
cristye6f04802014-05-04 01:41:20 +0000472 (void) CopyMagickString(property,cin.file.create_date,
473 sizeof(cin.file.create_date));
474 (void) SetImageProperty(image,"dpx:file.create_date",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000475 offset+=ReadBlob(image,sizeof(cin.file.create_time),(unsigned char *)
476 cin.file.create_time);
cristye6f04802014-05-04 01:41:20 +0000477 (void) CopyMagickString(property,cin.file.create_time,
478 sizeof(cin.file.create_time));
479 (void) SetImageProperty(image,"dpx:file.create_time",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000480 offset+=ReadBlob(image,sizeof(cin.file.reserve),(unsigned char *)
481 cin.file.reserve);
482 /*
483 Image information.
484 */
485 cin.image.orientation=(unsigned char) ReadBlobByte(image);
486 offset++;
dirk93b02b72013-11-16 16:03:36 +0000487 if (cin.image.orientation != (unsigned char) (~0))
cristy97450ff2010-12-29 17:29:17 +0000488 (void) FormatImageProperty(image,"dpx:image.orientation","%d",
cristy3ed852e2009-09-05 21:47:34 +0000489 cin.image.orientation);
490 switch (cin.image.orientation)
491 {
492 default:
cristy4e82e512011-04-24 01:33:42 +0000493 case 0: image->orientation=TopLeftOrientation; break;
494 case 1: image->orientation=TopRightOrientation; break;
495 case 2: image->orientation=BottomLeftOrientation; break;
496 case 3: image->orientation=BottomRightOrientation; break;
497 case 4: image->orientation=LeftTopOrientation; break;
498 case 5: image->orientation=RightTopOrientation; break;
499 case 6: image->orientation=LeftBottomOrientation; break;
500 case 7: image->orientation=RightBottomOrientation; break;
cristy3ed852e2009-09-05 21:47:34 +0000501 }
502 cin.image.number_channels=(unsigned char) ReadBlobByte(image);
503 offset++;
504 offset+=ReadBlob(image,sizeof(cin.image.reserve1),(unsigned char *)
505 cin.image.reserve1);
506 for (i=0; i < 8; i++)
507 {
508 cin.image.channel[i].designator[0]=(unsigned char) ReadBlobByte(image);
509 offset++;
510 cin.image.channel[i].designator[1]=(unsigned char) ReadBlobByte(image);
511 offset++;
512 cin.image.channel[i].bits_per_pixel=(unsigned char) ReadBlobByte(image);
513 offset++;
514 cin.image.channel[i].reserve=(unsigned char) ReadBlobByte(image);
515 offset++;
516 cin.image.channel[i].pixels_per_line=ReadBlobLong(image);
517 offset+=4;
518 cin.image.channel[i].lines_per_image=ReadBlobLong(image);
519 offset+=4;
520 cin.image.channel[i].min_data=ReadBlobFloat(image);
521 offset+=4;
522 cin.image.channel[i].min_quantity=ReadBlobFloat(image);
523 offset+=4;
524 cin.image.channel[i].max_data=ReadBlobFloat(image);
525 offset+=4;
526 cin.image.channel[i].max_quantity=ReadBlobFloat(image);
527 offset+=4;
528 }
529 cin.image.white_point[0]=ReadBlobFloat(image);
530 offset+=4;
531 if (IsFloatDefined(cin.image.white_point[0]) != MagickFalse)
532 image->chromaticity.white_point.x=cin.image.white_point[0];
533 cin.image.white_point[1]=ReadBlobFloat(image);
534 offset+=4;
535 if (IsFloatDefined(cin.image.white_point[1]) != MagickFalse)
536 image->chromaticity.white_point.y=cin.image.white_point[1];
537 cin.image.red_primary_chromaticity[0]=ReadBlobFloat(image);
538 offset+=4;
539 if (IsFloatDefined(cin.image.red_primary_chromaticity[0]) != MagickFalse)
540 image->chromaticity.red_primary.x=cin.image.red_primary_chromaticity[0];
541 cin.image.red_primary_chromaticity[1]=ReadBlobFloat(image);
542 offset+=4;
543 if (IsFloatDefined(cin.image.red_primary_chromaticity[1]) != MagickFalse)
544 image->chromaticity.red_primary.y=cin.image.red_primary_chromaticity[1];
545 cin.image.green_primary_chromaticity[0]=ReadBlobFloat(image);
546 offset+=4;
547 if (IsFloatDefined(cin.image.green_primary_chromaticity[0]) != MagickFalse)
548 image->chromaticity.red_primary.x=cin.image.green_primary_chromaticity[0];
549 cin.image.green_primary_chromaticity[1]=ReadBlobFloat(image);
550 offset+=4;
551 if (IsFloatDefined(cin.image.green_primary_chromaticity[1]) != MagickFalse)
552 image->chromaticity.green_primary.y=cin.image.green_primary_chromaticity[1];
553 cin.image.blue_primary_chromaticity[0]=ReadBlobFloat(image);
554 offset+=4;
555 if (IsFloatDefined(cin.image.blue_primary_chromaticity[0]) != MagickFalse)
556 image->chromaticity.blue_primary.x=cin.image.blue_primary_chromaticity[0];
557 cin.image.blue_primary_chromaticity[1]=ReadBlobFloat(image);
558 offset+=4;
559 if (IsFloatDefined(cin.image.blue_primary_chromaticity[1]) != MagickFalse)
560 image->chromaticity.blue_primary.y=cin.image.blue_primary_chromaticity[1];
561 offset+=ReadBlob(image,sizeof(cin.image.label),(unsigned char *)
562 cin.image.label);
cristye6f04802014-05-04 01:41:20 +0000563 (void) CopyMagickString(property,cin.image.label,sizeof(cin.image.label));
564 (void) SetImageProperty(image,"dpx:image.label",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000565 offset+=ReadBlob(image,sizeof(cin.image.reserve),(unsigned char *)
566 cin.image.reserve);
567 /*
568 Image data format information.
569 */
570 cin.data_format.interleave=(unsigned char) ReadBlobByte(image);
571 offset++;
572 cin.data_format.packing=(unsigned char) ReadBlobByte(image);
573 offset++;
574 cin.data_format.sign=(unsigned char) ReadBlobByte(image);
575 offset++;
576 cin.data_format.sense=(unsigned char) ReadBlobByte(image);
577 offset++;
578 cin.data_format.line_pad=ReadBlobLong(image);
579 offset+=4;
580 cin.data_format.channel_pad=ReadBlobLong(image);
581 offset+=4;
582 offset+=ReadBlob(image,sizeof(cin.data_format.reserve),(unsigned char *)
583 cin.data_format.reserve);
584 /*
585 Image origination information.
586 */
cristy6cff05d2010-09-02 11:22:46 +0000587 cin.origination.x_offset=(int) ReadBlobLong(image);
cristy3ed852e2009-09-05 21:47:34 +0000588 offset+=4;
cristybb503372010-05-27 20:51:26 +0000589 if ((size_t) cin.origination.x_offset != ~0UL)
cristy97450ff2010-12-29 17:29:17 +0000590 (void) FormatImageProperty(image,"dpx:origination.x_offset","%.20g",
cristye8c25f92010-06-03 00:53:06 +0000591 (double) cin.origination.x_offset);
cristy811f5172010-12-29 17:38:08 +0000592 cin.origination.y_offset=(ssize_t) ReadBlobLong(image);
cristy3ed852e2009-09-05 21:47:34 +0000593 offset+=4;
cristybb503372010-05-27 20:51:26 +0000594 if ((size_t) cin.origination.y_offset != ~0UL)
cristy97450ff2010-12-29 17:29:17 +0000595 (void) FormatImageProperty(image,"dpx:origination.y_offset","%.20g",
cristye8c25f92010-06-03 00:53:06 +0000596 (double) cin.origination.y_offset);
cristy3ed852e2009-09-05 21:47:34 +0000597 offset+=ReadBlob(image,sizeof(cin.origination.filename),(unsigned char *)
598 cin.origination.filename);
cristye6f04802014-05-04 01:41:20 +0000599 (void) CopyMagickString(property,cin.origination.filename,
600 sizeof(cin.origination.filename));
601 (void) SetImageProperty(image,"dpx:origination.filename",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000602 offset+=ReadBlob(image,sizeof(cin.origination.create_date),(unsigned char *)
603 cin.origination.create_date);
cristye6f04802014-05-04 01:41:20 +0000604 (void) CopyMagickString(property,cin.origination.create_date,
605 sizeof(cin.origination.create_date));
606 (void) SetImageProperty(image,"dpx:origination.create_date",property,
607 exception);
cristy3ed852e2009-09-05 21:47:34 +0000608 offset+=ReadBlob(image,sizeof(cin.origination.create_time),(unsigned char *)
609 cin.origination.create_time);
cristye6f04802014-05-04 01:41:20 +0000610 (void) CopyMagickString(property,cin.origination.create_time,
611 sizeof(cin.origination.create_time));
612 (void) SetImageProperty(image,"dpx:origination.create_time",property,
613 exception);
cristy3ed852e2009-09-05 21:47:34 +0000614 offset+=ReadBlob(image,sizeof(cin.origination.device),(unsigned char *)
615 cin.origination.device);
cristye6f04802014-05-04 01:41:20 +0000616 (void) CopyMagickString(property,cin.origination.device,
617 sizeof(cin.origination.device));
618 (void) SetImageProperty(image,"dpx:origination.device",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000619 offset+=ReadBlob(image,sizeof(cin.origination.model),(unsigned char *)
620 cin.origination.model);
cristye6f04802014-05-04 01:41:20 +0000621 (void) CopyMagickString(property,cin.origination.model,
622 sizeof(cin.origination.model));
623 (void) SetImageProperty(image,"dpx:origination.model",property,exception);
cristy100a0562014-04-18 01:27:37 +0000624 (void) ResetMagickMemory(cin.origination.serial,0,
625 sizeof(cin.origination.serial));
cristy3ed852e2009-09-05 21:47:34 +0000626 offset+=ReadBlob(image,sizeof(cin.origination.serial),(unsigned char *)
627 cin.origination.serial);
cristye6f04802014-05-04 01:41:20 +0000628 (void) CopyMagickString(property,cin.origination.serial,
629 sizeof(cin.origination.serial));
630 (void) SetImageProperty(image,"dpx:origination.serial",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000631 cin.origination.x_pitch=ReadBlobFloat(image);
632 offset+=4;
633 cin.origination.y_pitch=ReadBlobFloat(image);
634 offset+=4;
635 cin.origination.gamma=ReadBlobFloat(image);
636 offset+=4;
637 if (IsFloatDefined(cin.origination.gamma) != MagickFalse)
638 image->gamma=cin.origination.gamma;
639 offset+=ReadBlob(image,sizeof(cin.origination.reserve),(unsigned char *)
640 cin.origination.reserve);
641 if ((cin.file.image_offset > 2048) && (cin.file.user_length != 0))
642 {
cristyf0605892011-09-06 14:56:46 +0000643 int
644 c;
645
cristy3ed852e2009-09-05 21:47:34 +0000646 /*
647 Image film information.
648 */
649 cin.film.id=ReadBlobByte(image);
650 offset++;
cristyf0605892011-09-06 14:56:46 +0000651 c=cin.film.id;
cristy94b11832011-09-08 19:46:03 +0000652 if (c != ~0)
cristy97450ff2010-12-29 17:29:17 +0000653 (void) FormatImageProperty(image,"dpx:film.id","%d",cin.film.id);
cristy3ed852e2009-09-05 21:47:34 +0000654 cin.film.type=ReadBlobByte(image);
655 offset++;
cristyf0605892011-09-06 14:56:46 +0000656 c=cin.film.type;
cristy94b11832011-09-08 19:46:03 +0000657 if (c != ~0)
cristy97450ff2010-12-29 17:29:17 +0000658 (void) FormatImageProperty(image,"dpx:film.type","%d",cin.film.type);
cristy3ed852e2009-09-05 21:47:34 +0000659 cin.film.offset=ReadBlobByte(image);
660 offset++;
cristyf0605892011-09-06 14:56:46 +0000661 c=cin.film.offset;
cristy94b11832011-09-08 19:46:03 +0000662 if (c != ~0)
cristy97450ff2010-12-29 17:29:17 +0000663 (void) FormatImageProperty(image,"dpx:film.offset","%d",
cristy3ed852e2009-09-05 21:47:34 +0000664 cin.film.offset);
665 cin.film.reserve1=ReadBlobByte(image);
666 offset++;
667 cin.film.prefix=ReadBlobLong(image);
668 offset+=4;
669 if (cin.film.prefix != ~0UL)
cristy97450ff2010-12-29 17:29:17 +0000670 (void) FormatImageProperty(image,"dpx:film.prefix","%.20g",(double)
cristy3ed852e2009-09-05 21:47:34 +0000671 cin.film.prefix);
672 cin.film.count=ReadBlobLong(image);
673 offset+=4;
674 offset+=ReadBlob(image,sizeof(cin.film.format),(unsigned char *)
675 cin.film.format);
cristye6f04802014-05-04 01:41:20 +0000676 (void) CopyMagickString(property,cin.film.format,sizeof(cin.film.format));
677 (void) SetImageProperty(image,"dpx:film.format",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000678 cin.film.frame_position=ReadBlobLong(image);
679 offset+=4;
680 if (cin.film.frame_position != ~0UL)
cristy97450ff2010-12-29 17:29:17 +0000681 (void) FormatImageProperty(image,"dpx:film.frame_position","%.20g",
cristye8c25f92010-06-03 00:53:06 +0000682 (double) cin.film.frame_position);
cristy3ed852e2009-09-05 21:47:34 +0000683 cin.film.frame_rate=ReadBlobFloat(image);
684 offset+=4;
685 if (IsFloatDefined(cin.film.frame_rate) != MagickFalse)
cristy97450ff2010-12-29 17:29:17 +0000686 (void) FormatImageProperty(image,"dpx:film.frame_rate","%g",
cristy3ed852e2009-09-05 21:47:34 +0000687 cin.film.frame_rate);
688 offset+=ReadBlob(image,sizeof(cin.film.frame_id),(unsigned char *)
689 cin.film.frame_id);
cristye6f04802014-05-04 01:41:20 +0000690 (void) CopyMagickString(property,cin.film.frame_id,
691 sizeof(cin.film.frame_id));
692 (void) SetImageProperty(image,"dpx:film.frame_id",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000693 offset+=ReadBlob(image,sizeof(cin.film.slate_info),(unsigned char *)
694 cin.film.slate_info);
cristye6f04802014-05-04 01:41:20 +0000695 (void) CopyMagickString(property,cin.film.slate_info,
696 sizeof(cin.film.slate_info));
697 (void) SetImageProperty(image,"dpx:film.slate_info",property,exception);
cristy3ed852e2009-09-05 21:47:34 +0000698 offset+=ReadBlob(image,sizeof(cin.film.reserve),(unsigned char *)
699 cin.film.reserve);
700 }
701 if ((cin.file.image_offset > 2048) && (cin.file.user_length != 0))
702 {
703 StringInfo
704 *profile;
705
706 /*
707 User defined data.
708 */
cristyb3f97ae2015-05-18 12:29:32 +0000709 profile=BlobToStringInfo((const unsigned char *) NULL,cin.file.user_length);
cristy60395292011-09-01 13:25:56 +0000710 if (profile == (StringInfo *) NULL)
711 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +0000712 offset+=ReadBlob(image,GetStringInfoLength(profile),
713 GetStringInfoDatum(profile));
cristyd15e6592011-10-15 00:13:06 +0000714 (void) SetImageProfile(image,"dpx:user.data",profile,exception);
cristy3ed852e2009-09-05 21:47:34 +0000715 profile=DestroyStringInfo(profile);
716 }
cristy3ed852e2009-09-05 21:47:34 +0000717 image->depth=cin.image.channel[0].bits_per_pixel;
718 image->columns=cin.image.channel[0].pixels_per_line;
719 image->rows=cin.image.channel[0].lines_per_image;
cristyacabb842014-12-14 23:36:33 +0000720 if (image_info->ping != MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000721 {
722 (void) CloseBlob(image);
723 return(image);
724 }
cristybdc73bd2014-12-28 19:27:24 +0000725 for ( ; offset < (MagickOffsetType) cin.file.image_offset; offset++)
726 {
727 int
728 c;
729
730 c=ReadBlobByte(image);
731 if (c == EOF)
732 break;
733 }
734 if (offset < (MagickOffsetType) cin.file.image_offset)
735 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristyacabb842014-12-14 23:36:33 +0000736 status=SetImageExtent(image,image->columns,image->rows,exception);
737 if (status == MagickFalse)
738 return(DestroyImageList(image));
cristy3ed852e2009-09-05 21:47:34 +0000739 /*
740 Convert CIN raster image to pixel packets.
741 */
cristy5f766ef2014-12-14 21:12:47 +0000742 quantum_info=AcquireQuantumInfo(image_info,image);
cristy3ed852e2009-09-05 21:47:34 +0000743 if (quantum_info == (QuantumInfo *) NULL)
744 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
745 quantum_info->quantum=32;
746 quantum_info->pack=MagickFalse;
747 quantum_type=RGBQuantum;
cristy3ed852e2009-09-05 21:47:34 +0000748 length=GetQuantumExtent(image,quantum_info,quantum_type);
749 length=GetBytesPerRow(image->columns,3,image->depth,MagickTrue);
750 if (cin.image.number_channels == 1)
751 {
752 quantum_type=GrayQuantum;
753 length=GetBytesPerRow(image->columns,1,image->depth,MagickTrue);
754 }
cristybb503372010-05-27 20:51:26 +0000755 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +0000756 {
757 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception);
cristyacd2ed22011-08-30 01:44:23 +0000758 if (q == (Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +0000759 break;
cristyb3f97ae2015-05-18 12:29:32 +0000760 pixels=(const unsigned char *) ReadBlobStream(image,length,
761 GetQuantumPixels(quantum_info),&count);
cristy3ed852e2009-09-05 21:47:34 +0000762 if ((size_t) count != length)
763 break;
764 (void) ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
765 quantum_type,pixels,exception);
766 if (SyncAuthenticPixels(image,exception) == MagickFalse)
767 break;
768 if (image->previous == (Image *) NULL)
769 {
cristycee97112010-05-28 00:44:52 +0000770 status=SetImageProgress(image,LoadImageTag,(MagickOffsetType) y,
cristy97450ff2010-12-29 17:29:17 +0000771 image->rows);
cristy3ed852e2009-09-05 21:47:34 +0000772 if (status == MagickFalse)
773 break;
774 }
775 }
776 SetQuantumImageType(image,quantum_type);
777 quantum_info=DestroyQuantumInfo(quantum_info);
778 if (EOFBlob(image) != MagickFalse)
779 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
780 image->filename);
cristye2c4f182012-05-12 14:11:53 +0000781 SetImageColorspace(image,LogColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000782 (void) CloseBlob(image);
783 return(GetFirstImageInList(image));
784}
785
786/*
787%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
788% %
789% %
790% %
791% R e g i s t e r C I N E O N I m a g e %
792% %
793% %
794% %
795%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
796%
797% RegisterCINImage() adds attributes for the CIN image format to the list of
798% of supported formats. The attributes include the image format tag, a method
799% to read and/or write the format, whether the format supports the saving of
800% more than one frame to the same file or blob, whether the format supports
801% native in-memory I/O, and a brief description of the format.
802%
803% The format of the RegisterCINImage method is:
804%
cristybb503372010-05-27 20:51:26 +0000805% size_t RegisterCINImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000806%
807*/
cristybb503372010-05-27 20:51:26 +0000808ModuleExport size_t RegisterCINImage(void)
cristy3ed852e2009-09-05 21:47:34 +0000809{
810 MagickInfo
811 *entry;
812
dirk06b627a2015-04-06 18:59:17 +0000813 entry=AcquireMagickInfo("CIN","CIN","Cineon Image File");
cristy3ed852e2009-09-05 21:47:34 +0000814 entry->decoder=(DecodeImageHandler *) ReadCINImage;
815 entry->encoder=(EncodeImageHandler *) WriteCINImage;
816 entry->magick=(IsImageFormatHandler *) IsCIN;
dirk08e9a112015-02-22 01:51:41 +0000817 entry->flags^=CoderAdjoinFlag;
cristy3ed852e2009-09-05 21:47:34 +0000818 (void) RegisterMagickInfo(entry);
819 return(MagickImageCoderSignature);
820}
821
822/*
823%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
824% %
825% %
826% %
827% U n r e g i s t e r C I N E O N I m a g e %
828% %
829% %
830% %
831%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
832%
833% UnregisterCINImage() removes format registrations made by the CIN module
834% from the list of supported formats.
835%
836% The format of the UnregisterCINImage method is:
837%
838% UnregisterCINImage(void)
839%
840*/
841ModuleExport void UnregisterCINImage(void)
842{
843 (void) UnregisterMagickInfo("CINEON");
844}
845
846/*
847%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
848% %
849% %
850% %
851% W r i t e C I N E O N I m a g e %
852% %
853% %
854% %
855%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
856%
857% WriteCINImage() writes an image in CIN encoded image format.
858%
859% The format of the WriteCINImage method is:
860%
cristy1e178e72011-08-28 19:44:34 +0000861% MagickBooleanType WriteCINImage(const ImageInfo *image_info,
862% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000863%
864% A description of each parameter follows.
865%
866% o image_info: the image info.
867%
868% o image: The image.
869%
cristy1e178e72011-08-28 19:44:34 +0000870% o exception: return any errors or warnings in this structure.
871%
cristy3ed852e2009-09-05 21:47:34 +0000872*/
873
874static inline const char *GetCINProperty(const ImageInfo *image_info,
cristyd15e6592011-10-15 00:13:06 +0000875 const Image *image,const char *property,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000876{
877 const char
878 *value;
879
cristy092ec8d2013-04-26 13:46:22 +0000880 value=GetImageOption(image_info,property);
cristy3ed852e2009-09-05 21:47:34 +0000881 if (value != (const char *) NULL)
882 return(value);
cristyd15e6592011-10-15 00:13:06 +0000883 return(GetImageProperty(image,property,exception));
cristy3ed852e2009-09-05 21:47:34 +0000884}
885
cristy1e178e72011-08-28 19:44:34 +0000886static MagickBooleanType WriteCINImage(const ImageInfo *image_info,Image *image,
887 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000888{
cristyc50489c2014-05-16 17:43:56 +0000889 char
cristy151b66d2015-04-15 10:50:31 +0000890 timestamp[MagickPathExtent];
cristyc50489c2014-05-16 17:43:56 +0000891
cristy3ed852e2009-09-05 21:47:34 +0000892 const char
893 *value;
894
895 CINInfo
896 cin;
897
898 const StringInfo
899 *profile;
900
cristy3ed852e2009-09-05 21:47:34 +0000901 MagickBooleanType
902 status;
903
904 MagickOffsetType
905 offset;
906
907 QuantumInfo
908 *quantum_info;
909
910 QuantumType
911 quantum_type;
912
cristy4c08aed2011-07-01 19:47:50 +0000913 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +0000914 *p;
915
cristybb503372010-05-27 20:51:26 +0000916 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000917 i;
918
919 size_t
920 length;
921
922 ssize_t
cristy4e82e512011-04-24 01:33:42 +0000923 count,
924 y;
cristy3ed852e2009-09-05 21:47:34 +0000925
926 struct tm
927 local_time;
928
929 time_t
930 seconds;
931
932 unsigned char
933 *pixels;
934
935 /*
936 Open output image file.
937 */
938 assert(image_info != (const ImageInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000939 assert(image_info->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000940 assert(image != (Image *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000941 assert(image->signature == MagickCoreSignature);
cristy3ed852e2009-09-05 21:47:34 +0000942 if (image->debug != MagickFalse)
943 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
cristy3a37efd2011-08-28 20:31:03 +0000944 assert(exception != (ExceptionInfo *) NULL);
cristye1c94d92015-06-28 12:16:33 +0000945 assert(exception->signature == MagickCoreSignature);
cristy1e178e72011-08-28 19:44:34 +0000946 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +0000947 if (status == MagickFalse)
948 return(status);
949 if (image->colorspace != LogColorspace)
cristye941a752011-10-15 01:52:48 +0000950 (void) TransformImageColorspace(image,LogColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000951 /*
952 Write image information.
953 */
954 (void) ResetMagickMemory(&cin,0,sizeof(cin));
955 offset=0;
956 cin.file.magic=0x802A5FD7UL;
cristyf6fe0a12010-05-30 00:44:47 +0000957 offset+=WriteBlobLong(image,(unsigned int) cin.file.magic);
cristy3ed852e2009-09-05 21:47:34 +0000958 cin.file.image_offset=0x800;
cristyf6fe0a12010-05-30 00:44:47 +0000959 offset+=WriteBlobLong(image,(unsigned int) cin.file.image_offset);
cristy3ed852e2009-09-05 21:47:34 +0000960 cin.file.generic_length=0x400;
cristyf6fe0a12010-05-30 00:44:47 +0000961 offset+=WriteBlobLong(image,(unsigned int) cin.file.generic_length);
cristy3ed852e2009-09-05 21:47:34 +0000962 cin.file.industry_length=0x400;
cristyf6fe0a12010-05-30 00:44:47 +0000963 offset+=WriteBlobLong(image,(unsigned int) cin.file.industry_length);
cristy3ed852e2009-09-05 21:47:34 +0000964 cin.file.user_length=0x00;
cristy97450ff2010-12-29 17:29:17 +0000965 profile=GetImageProfile(image,"dpx:user.data");
cristy3ed852e2009-09-05 21:47:34 +0000966 if (profile != (StringInfo *) NULL)
967 {
cristybb503372010-05-27 20:51:26 +0000968 cin.file.user_length+=(size_t) GetStringInfoLength(profile);
cristy3ed852e2009-09-05 21:47:34 +0000969 cin.file.user_length=(((cin.file.user_length+0x2000-1)/0x2000)*0x2000);
970 }
cristyf6fe0a12010-05-30 00:44:47 +0000971 offset+=WriteBlobLong(image,(unsigned int) cin.file.user_length);
cristy3ed852e2009-09-05 21:47:34 +0000972 cin.file.file_size=4*image->columns*image->rows+0x2000;
cristyf6fe0a12010-05-30 00:44:47 +0000973 offset+=WriteBlobLong(image,(unsigned int) cin.file.file_size);
cristy3ed852e2009-09-05 21:47:34 +0000974 (void) CopyMagickString(cin.file.version,"V4.5",sizeof(cin.file.version));
975 offset+=WriteBlob(image,sizeof(cin.file.version),(unsigned char *)
976 cin.file.version);
cristyd15e6592011-10-15 00:13:06 +0000977 value=GetCINProperty(image_info,image,"dpx:file.filename",exception);
cristy3ed852e2009-09-05 21:47:34 +0000978 if (value != (const char *) NULL)
979 (void) CopyMagickString(cin.file.filename,value,sizeof(cin.file.filename));
980 else
981 (void) CopyMagickString(cin.file.filename,image->filename,
982 sizeof(cin.file.filename));
983 offset+=WriteBlob(image,sizeof(cin.file.filename),(unsigned char *)
984 cin.file.filename);
985 seconds=time((time_t *) NULL);
986#if defined(MAGICKCORE_HAVE_LOCALTIME_R)
987 (void) localtime_r(&seconds,&local_time);
988#else
989 (void) memcpy(&local_time,localtime(&seconds),sizeof(local_time));
990#endif
cristyc50489c2014-05-16 17:43:56 +0000991 (void) memset(timestamp,0,sizeof(timestamp));
cristy151b66d2015-04-15 10:50:31 +0000992 (void) strftime(timestamp,MagickPathExtent,"%Y:%m:%d:%H:%M:%S%Z",&local_time);
cristyc50489c2014-05-16 17:43:56 +0000993 (void) memset(cin.file.create_date,0,sizeof(cin.file.create_date));
994 (void) CopyMagickString(cin.file.create_date,timestamp,11);
cristy3ed852e2009-09-05 21:47:34 +0000995 offset+=WriteBlob(image,sizeof(cin.file.create_date),(unsigned char *)
996 cin.file.create_date);
cristyc50489c2014-05-16 17:43:56 +0000997 (void) memset(cin.file.create_time,0,sizeof(cin.file.create_time));
cristy3d65cb82014-05-17 11:56:32 +0000998 (void) CopyMagickString(cin.file.create_time,timestamp+11,11);
cristy3ed852e2009-09-05 21:47:34 +0000999 offset+=WriteBlob(image,sizeof(cin.file.create_time),(unsigned char *)
1000 cin.file.create_time);
1001 offset+=WriteBlob(image,sizeof(cin.file.reserve),(unsigned char *)
1002 cin.file.reserve);
1003 cin.image.orientation=0x00;
1004 offset+=WriteBlobByte(image,cin.image.orientation);
1005 cin.image.number_channels=3;
1006 offset+=WriteBlobByte(image,cin.image.number_channels);
1007 offset+=WriteBlob(image,sizeof(cin.image.reserve1),(unsigned char *)
1008 cin.image.reserve1);
1009 for (i=0; i < 8; i++)
1010 {
1011 cin.image.channel[i].designator[0]=0; /* universal metric */
1012 offset+=WriteBlobByte(image,cin.image.channel[0].designator[0]);
1013 cin.image.channel[i].designator[1]=(unsigned char) (i > 3 ? 0 : i+1); /* channel color */;
1014 offset+=WriteBlobByte(image,cin.image.channel[1].designator[0]);
1015 cin.image.channel[i].bits_per_pixel=(unsigned char) image->depth;
1016 offset+=WriteBlobByte(image,cin.image.channel[0].bits_per_pixel);
1017 offset+=WriteBlobByte(image,cin.image.channel[0].reserve);
1018 cin.image.channel[i].pixels_per_line=image->columns;
cristyf6fe0a12010-05-30 00:44:47 +00001019 offset+=WriteBlobLong(image,(unsigned int)
1020 cin.image.channel[0].pixels_per_line);
cristy3ed852e2009-09-05 21:47:34 +00001021 cin.image.channel[i].lines_per_image=image->rows;
cristyf6fe0a12010-05-30 00:44:47 +00001022 offset+=WriteBlobLong(image,(unsigned int)
1023 cin.image.channel[0].lines_per_image);
cristy3ed852e2009-09-05 21:47:34 +00001024 cin.image.channel[i].min_data=0;
1025 offset+=WriteBlobFloat(image,cin.image.channel[0].min_data);
1026 cin.image.channel[i].min_quantity=0.0;
1027 offset+=WriteBlobFloat(image,cin.image.channel[0].min_quantity);
1028 cin.image.channel[i].max_data=(float) ((MagickOffsetType)
1029 GetQuantumRange(image->depth));
1030 offset+=WriteBlobFloat(image,cin.image.channel[0].max_data);
1031 cin.image.channel[i].max_quantity=2.048f;
1032 offset+=WriteBlobFloat(image,cin.image.channel[0].max_quantity);
1033 }
1034 offset+=WriteBlobFloat(image,image->chromaticity.white_point.x);
1035 offset+=WriteBlobFloat(image,image->chromaticity.white_point.y);
1036 offset+=WriteBlobFloat(image,image->chromaticity.red_primary.x);
1037 offset+=WriteBlobFloat(image,image->chromaticity.red_primary.y);
1038 offset+=WriteBlobFloat(image,image->chromaticity.green_primary.x);
1039 offset+=WriteBlobFloat(image,image->chromaticity.green_primary.y);
1040 offset+=WriteBlobFloat(image,image->chromaticity.blue_primary.x);
1041 offset+=WriteBlobFloat(image,image->chromaticity.blue_primary.y);
cristyd15e6592011-10-15 00:13:06 +00001042 value=GetCINProperty(image_info,image,"dpx:image.label",exception);
cristy3ed852e2009-09-05 21:47:34 +00001043 if (value != (const char *) NULL)
1044 (void) CopyMagickString(cin.image.label,value,sizeof(cin.image.label));
1045 offset+=WriteBlob(image,sizeof(cin.image.label),(unsigned char *)
1046 cin.image.label);
1047 offset+=WriteBlob(image,sizeof(cin.image.reserve),(unsigned char *)
1048 cin.image.reserve);
1049 /*
1050 Write data format information.
1051 */
1052 cin.data_format.interleave=0; /* pixel interleave (rgbrgbr...) */
1053 offset+=WriteBlobByte(image,cin.data_format.interleave);
cristybb503372010-05-27 20:51:26 +00001054 cin.data_format.packing=5; /* packing ssize_tword (32bit) boundaries */
cristy3ed852e2009-09-05 21:47:34 +00001055 offset+=WriteBlobByte(image,cin.data_format.packing);
1056 cin.data_format.sign=0; /* unsigned data */
1057 offset+=WriteBlobByte(image,cin.data_format.sign);
1058 cin.data_format.sense=0; /* image sense: positive image */
1059 offset+=WriteBlobByte(image,cin.data_format.sense);
1060 cin.data_format.line_pad=0;
cristyf6fe0a12010-05-30 00:44:47 +00001061 offset+=WriteBlobLong(image,(unsigned int) cin.data_format.line_pad);
cristy3ed852e2009-09-05 21:47:34 +00001062 cin.data_format.channel_pad=0;
cristyf6fe0a12010-05-30 00:44:47 +00001063 offset+=WriteBlobLong(image,(unsigned int) cin.data_format.channel_pad);
cristy3ed852e2009-09-05 21:47:34 +00001064 offset+=WriteBlob(image,sizeof(cin.data_format.reserve),(unsigned char *)
1065 cin.data_format.reserve);
1066 /*
1067 Write origination information.
1068 */
1069 cin.origination.x_offset=0UL;
cristyd15e6592011-10-15 00:13:06 +00001070 value=GetCINProperty(image_info,image,"dpx:origination.x_offset",exception);
cristy3ed852e2009-09-05 21:47:34 +00001071 if (value != (const char *) NULL)
cristy811f5172010-12-29 17:38:08 +00001072 cin.origination.x_offset=(ssize_t) StringToLong(value);
cristyf9cca6a2010-06-04 23:49:28 +00001073 offset+=WriteBlobLong(image,(unsigned int) cin.origination.x_offset);
cristy3ed852e2009-09-05 21:47:34 +00001074 cin.origination.y_offset=0UL;
cristyd15e6592011-10-15 00:13:06 +00001075 value=GetCINProperty(image_info,image,"dpx:origination.y_offset",exception);
cristy3ed852e2009-09-05 21:47:34 +00001076 if (value != (const char *) NULL)
cristy811f5172010-12-29 17:38:08 +00001077 cin.origination.y_offset=(ssize_t) StringToLong(value);
cristyf9cca6a2010-06-04 23:49:28 +00001078 offset+=WriteBlobLong(image,(unsigned int) cin.origination.y_offset);
cristyd15e6592011-10-15 00:13:06 +00001079 value=GetCINProperty(image_info,image,"dpx:origination.filename",exception);
cristy3ed852e2009-09-05 21:47:34 +00001080 if (value != (const char *) NULL)
1081 (void) CopyMagickString(cin.origination.filename,value,
1082 sizeof(cin.origination.filename));
1083 else
1084 (void) CopyMagickString(cin.origination.filename,image->filename,
1085 sizeof(cin.origination.filename));
1086 offset+=WriteBlob(image,sizeof(cin.origination.filename),(unsigned char *)
1087 cin.origination.filename);
1088 seconds=time((time_t *) NULL);
cristyc50489c2014-05-16 17:43:56 +00001089 (void) memset(timestamp,0,sizeof(timestamp));
cristy151b66d2015-04-15 10:50:31 +00001090 (void) strftime(timestamp,MagickPathExtent,"%Y:%m:%d:%H:%M:%S%Z",&local_time);
cristy69c1a6e2014-05-16 17:46:12 +00001091 (void) memset(cin.origination.create_date,0,
1092 sizeof(cin.origination.create_date));
1093 (void) CopyMagickString(cin.origination.create_date,timestamp,11);
cristy3ed852e2009-09-05 21:47:34 +00001094 offset+=WriteBlob(image,sizeof(cin.origination.create_date),(unsigned char *)
1095 cin.origination.create_date);
cristyc50489c2014-05-16 17:43:56 +00001096 (void) memset(cin.origination.create_time,0,
1097 sizeof(cin.origination.create_time));
1098 (void) CopyMagickString(cin.origination.create_time,timestamp+11,15);
cristy3ed852e2009-09-05 21:47:34 +00001099 offset+=WriteBlob(image,sizeof(cin.origination.create_time),(unsigned char *)
cristy69c1a6e2014-05-16 17:46:12 +00001100 cin.origination.create_time);
cristyd15e6592011-10-15 00:13:06 +00001101 value=GetCINProperty(image_info,image,"dpx:origination.device",exception);
cristy3ed852e2009-09-05 21:47:34 +00001102 if (value != (const char *) NULL)
1103 (void) CopyMagickString(cin.origination.device,value,
1104 sizeof(cin.origination.device));
1105 offset+=WriteBlob(image,sizeof(cin.origination.device),(unsigned char *)
1106 cin.origination.device);
cristyd15e6592011-10-15 00:13:06 +00001107 value=GetCINProperty(image_info,image,"dpx:origination.model",exception);
cristy3ed852e2009-09-05 21:47:34 +00001108 if (value != (const char *) NULL)
1109 (void) CopyMagickString(cin.origination.model,value,
1110 sizeof(cin.origination.model));
1111 offset+=WriteBlob(image,sizeof(cin.origination.model),(unsigned char *)
1112 cin.origination.model);
cristyd15e6592011-10-15 00:13:06 +00001113 value=GetCINProperty(image_info,image,"dpx:origination.serial",exception);
cristy3ed852e2009-09-05 21:47:34 +00001114 if (value != (const char *) NULL)
1115 (void) CopyMagickString(cin.origination.serial,value,
1116 sizeof(cin.origination.serial));
1117 offset+=WriteBlob(image,sizeof(cin.origination.serial),(unsigned char *)
1118 cin.origination.serial);
1119 cin.origination.x_pitch=0.0f;
cristyd15e6592011-10-15 00:13:06 +00001120 value=GetCINProperty(image_info,image,"dpx:origination.x_pitch",exception);
cristy3ed852e2009-09-05 21:47:34 +00001121 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001122 cin.origination.x_pitch=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001123 offset+=WriteBlobFloat(image,cin.origination.x_pitch);
1124 cin.origination.y_pitch=0.0f;
cristyd15e6592011-10-15 00:13:06 +00001125 value=GetCINProperty(image_info,image,"dpx:origination.y_pitch",exception);
cristy3ed852e2009-09-05 21:47:34 +00001126 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001127 cin.origination.y_pitch=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001128 offset+=WriteBlobFloat(image,cin.origination.y_pitch);
1129 cin.origination.gamma=image->gamma;
1130 offset+=WriteBlobFloat(image,cin.origination.gamma);
1131 offset+=WriteBlob(image,sizeof(cin.origination.reserve),(unsigned char *)
1132 cin.origination.reserve);
1133 /*
1134 Image film information.
1135 */
1136 cin.film.id=0;
cristyd15e6592011-10-15 00:13:06 +00001137 value=GetCINProperty(image_info,image,"dpx:film.id",exception);
cristy3ed852e2009-09-05 21:47:34 +00001138 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001139 cin.film.id=(char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001140 offset+=WriteBlobByte(image,(unsigned char) cin.film.id);
1141 cin.film.type=0;
cristyd15e6592011-10-15 00:13:06 +00001142 value=GetCINProperty(image_info,image,"dpx:film.type",exception);
cristy3ed852e2009-09-05 21:47:34 +00001143 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001144 cin.film.type=(char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001145 offset+=WriteBlobByte(image,(unsigned char) cin.film.type);
1146 cin.film.offset=0;
cristyd15e6592011-10-15 00:13:06 +00001147 value=GetCINProperty(image_info,image,"dpx:film.offset",exception);
cristy3ed852e2009-09-05 21:47:34 +00001148 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001149 cin.film.offset=(char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001150 offset+=WriteBlobByte(image,(unsigned char) cin.film.offset);
1151 offset+=WriteBlobByte(image,(unsigned char) cin.film.reserve1);
1152 cin.film.prefix=0UL;
cristyd15e6592011-10-15 00:13:06 +00001153 value=GetCINProperty(image_info,image,"dpx:film.prefix",exception);
cristy3ed852e2009-09-05 21:47:34 +00001154 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001155 cin.film.prefix=StringToUnsignedLong(value);
cristyf6fe0a12010-05-30 00:44:47 +00001156 offset+=WriteBlobLong(image,(unsigned int) cin.film.prefix);
cristy3ed852e2009-09-05 21:47:34 +00001157 cin.film.count=0UL;
cristyd15e6592011-10-15 00:13:06 +00001158 value=GetCINProperty(image_info,image,"dpx:film.count",exception);
cristy3ed852e2009-09-05 21:47:34 +00001159 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001160 cin.film.count=StringToUnsignedLong(value);
cristyf6fe0a12010-05-30 00:44:47 +00001161 offset+=WriteBlobLong(image,(unsigned int) cin.film.count);
cristyd15e6592011-10-15 00:13:06 +00001162 value=GetCINProperty(image_info,image,"dpx:film.format",exception);
cristy3ed852e2009-09-05 21:47:34 +00001163 if (value != (const char *) NULL)
1164 (void) CopyMagickString(cin.film.format,value,sizeof(cin.film.format));
1165 offset+=WriteBlob(image,sizeof(cin.film.format),(unsigned char *)
1166 cin.film.format);
1167 cin.film.frame_position=0UL;
cristyd15e6592011-10-15 00:13:06 +00001168 value=GetCINProperty(image_info,image,"dpx:film.frame_position",exception);
cristy3ed852e2009-09-05 21:47:34 +00001169 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001170 cin.film.frame_position=StringToUnsignedLong(value);
cristyf6fe0a12010-05-30 00:44:47 +00001171 offset+=WriteBlobLong(image,(unsigned int) cin.film.frame_position);
cristy3ed852e2009-09-05 21:47:34 +00001172 cin.film.frame_rate=0.0f;
cristyd15e6592011-10-15 00:13:06 +00001173 value=GetCINProperty(image_info,image,"dpx:film.frame_rate",exception);
cristy3ed852e2009-09-05 21:47:34 +00001174 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001175 cin.film.frame_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001176 offset+=WriteBlobFloat(image,cin.film.frame_rate);
cristyd15e6592011-10-15 00:13:06 +00001177 value=GetCINProperty(image_info,image,"dpx:film.frame_id",exception);
cristy3ed852e2009-09-05 21:47:34 +00001178 if (value != (const char *) NULL)
1179 (void) CopyMagickString(cin.film.frame_id,value,sizeof(cin.film.frame_id));
1180 offset+=WriteBlob(image,sizeof(cin.film.frame_id),(unsigned char *)
1181 cin.film.frame_id);
cristyd15e6592011-10-15 00:13:06 +00001182 value=GetCINProperty(image_info,image,"dpx:film.slate_info",exception);
cristy3ed852e2009-09-05 21:47:34 +00001183 if (value != (const char *) NULL)
1184 (void) CopyMagickString(cin.film.slate_info,value,
1185 sizeof(cin.film.slate_info));
1186 offset+=WriteBlob(image,sizeof(cin.film.slate_info),(unsigned char *)
1187 cin.film.slate_info);
1188 offset+=WriteBlob(image,sizeof(cin.film.reserve),(unsigned char *)
1189 cin.film.reserve);
1190 if (profile != (StringInfo *) NULL)
1191 offset+=WriteBlob(image,GetStringInfoLength(profile),
1192 GetStringInfoDatum(profile));
1193 while (offset < (MagickOffsetType) cin.file.image_offset)
1194 offset+=WriteBlobByte(image,0x00);
1195 /*
1196 Convert pixel packets to CIN raster image.
1197 */
cristy5f766ef2014-12-14 21:12:47 +00001198 quantum_info=AcquireQuantumInfo(image_info,image);
cristy3ed852e2009-09-05 21:47:34 +00001199 if (quantum_info == (QuantumInfo *) NULL)
1200 ThrowWriterException(ResourceLimitError,"MemoryAllocationFailed");
1201 quantum_info->quantum=32;
1202 quantum_info->pack=MagickFalse;
1203 quantum_type=RGBQuantum;
cristyb3f97ae2015-05-18 12:29:32 +00001204 pixels=(unsigned char *) GetQuantumPixels(quantum_info);
cristy3ed852e2009-09-05 21:47:34 +00001205 length=GetBytesPerRow(image->columns,3,image->depth,MagickTrue);
dirk93b02b72013-11-16 16:03:36 +00001206DisableMSCWarning(4127)
cristy3ed852e2009-09-05 21:47:34 +00001207 if (0)
dirk93b02b72013-11-16 16:03:36 +00001208RestoreMSCWarning
cristy3ed852e2009-09-05 21:47:34 +00001209 {
1210 quantum_type=GrayQuantum;
cristybccc4f42011-11-24 17:57:52 +00001211 length=GetBytesPerRow(image->columns,1,image->depth,MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +00001212 }
cristybb503372010-05-27 20:51:26 +00001213 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001214 {
cristy1e178e72011-08-28 19:44:34 +00001215 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001216 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001217 break;
cristy4c08aed2011-07-01 19:47:50 +00001218 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
cristy1e178e72011-08-28 19:44:34 +00001219 quantum_type,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001220 count=WriteBlob(image,length,pixels);
1221 if (count != (ssize_t) length)
1222 break;
cristycee97112010-05-28 00:44:52 +00001223 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy97450ff2010-12-29 17:29:17 +00001224 image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001225 if (status == MagickFalse)
1226 break;
1227 }
1228 quantum_info=DestroyQuantumInfo(quantum_info);
1229 (void) CloseBlob(image);
1230 return(status);
1231}