blob: 8f18e0a3871d1ffe7c9bcfd831454f34511536cb [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% DDDD PPPP X X %
7% D D P P X X %
8% D D PPPP XXX %
9% D D P X X %
10% DDDD P X X %
11% %
12% %
13% Read/Write SMTPE DPX Image Format %
14% %
15% Software Design %
cristyde984cd2013-12-01 14:49:27 +000016% Cristy %
cristy3ed852e2009-09-05 21:47:34 +000017% March 2001 %
18% %
19% %
cristyfe676ee2013-11-18 13:03:38 +000020% Copyright 1999-2014 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/attribute.h"
cristy76ce6e12013-04-05 14:33:38 +000044#include "MagickCore/artifact.h"
cristy4c08aed2011-07-01 19:47:50 +000045#include "MagickCore/blob.h"
46#include "MagickCore/blob-private.h"
47#include "MagickCore/cache.h"
48#include "MagickCore/colorspace.h"
49#include "MagickCore/exception.h"
50#include "MagickCore/exception-private.h"
51#include "MagickCore/geometry.h"
52#include "MagickCore/image.h"
53#include "MagickCore/image-private.h"
54#include "MagickCore/list.h"
55#include "MagickCore/magick.h"
56#include "MagickCore/memory_.h"
57#include "MagickCore/module.h"
58#include "MagickCore/monitor.h"
59#include "MagickCore/monitor-private.h"
60#include "MagickCore/option.h"
cristy73a724e2011-11-24 18:47:12 +000061#include "MagickCore/pixel-accessor.h"
cristy4c08aed2011-07-01 19:47:50 +000062#include "MagickCore/profile.h"
63#include "MagickCore/property.h"
64#include "MagickCore/quantum-private.h"
65#include "MagickCore/static.h"
66#include "MagickCore/string_.h"
67#include "MagickCore/string-private.h"
cristy3ed852e2009-09-05 21:47:34 +000068
69/*
70 Typedef declaration.
71*/
72typedef enum
73{
74 UserDefinedColorimetric = 0,
75 PrintingDensityColorimetric = 1,
76 LinearColorimetric = 2,
77 LogarithmicColorimetric = 3,
78 UnspecifiedVideoColorimetric = 4,
79 SMTPE_274MColorimetric = 5,
80 ITU_R709Colorimetric = 6,
81 ITU_R601_625LColorimetric = 7,
82 ITU_R601_525LColorimetric = 8,
83 NTSCCompositeVideoColorimetric = 9,
84 PALCompositeVideoColorimetric = 10,
85 ZDepthLinearColorimetric = 11,
86 DepthHomogeneousColorimetric = 12
87} DPXColorimetric;
88
89typedef enum
90{
91 UndefinedComponentType = 0,
92 RedComponentType = 1,
93 GreenComponentType = 2,
94 BlueComponentType = 3,
95 AlphaComponentType = 4,
96 LumaComponentType = 6,
97 ColorDifferenceCbCrComponentType = 7,
98 DepthComponentType = 8,
99 CompositeVideoComponentType = 9,
100 RGBComponentType = 50,
101 RGBAComponentType = 51,
102 ABGRComponentType = 52,
103 CbYCrY422ComponentType = 100,
104 CbYACrYA4224ComponentType = 101,
105 CbYCr444ComponentType = 102,
106 CbYCrA4444ComponentType = 103,
107 UserDef2ElementComponentType = 150,
108 UserDef3ElementComponentType = 151,
109 UserDef4ElementComponentType = 152,
110 UserDef5ElementComponentType = 153,
111 UserDef6ElementComponentType = 154,
112 UserDef7ElementComponentType = 155,
113 UserDef8ElementComponentType = 156
114} DPXComponentType;
115
cristyc7f92ea2013-01-10 19:59:00 +0000116typedef enum
117{
118 TransferCharacteristicUserDefined = 0,
119 TransferCharacteristicPrintingDensity = 1,
120 TransferCharacteristicLinear = 2,
121 TransferCharacteristicLogarithmic = 3,
122 TransferCharacteristicUnspecifiedVideo = 4,
123 TransferCharacteristicSMTPE274M = 5, /* 1920x1080 TV */
124 TransferCharacteristicITU_R709 = 6, /* ITU R709 */
125 TransferCharacteristicITU_R601_625L = 7, /* 625 Line */
126 TransferCharacteristicITU_R601_525L = 8, /* 525 Line */
127 TransferCharacteristicNTSCCompositeVideo = 9,
128 TransferCharacteristicPALCompositeVideo = 10,
129 TransferCharacteristicZDepthLinear = 11,
130 TransferCharacteristicZDepthHomogeneous = 12
131} DPXTransferCharacteristic;
132
cristy3ed852e2009-09-05 21:47:34 +0000133typedef struct _DPXFileInfo
134{
135 unsigned int
136 magic,
137 image_offset;
138
139 char
140 version[8];
141
142 unsigned int
143 file_size,
144 ditto_key,
145 generic_size,
146 industry_size,
147 user_size;
148
149 char
150 filename[100],
151 timestamp[24],
152 creator[100],
153 project[200],
154 copyright[200];
155
156 unsigned int
157 encrypt_key;
158
159 char
160 reserve[104];
161} DPXFileInfo;
162
163typedef struct _DPXFilmInfo
164{
165 char
166 id[2],
167 type[2],
168 offset[2],
169 prefix[6],
170 count[4],
171 format[32];
172
173 unsigned int
174 frame_position,
175 sequence_extent,
176 held_count;
177
178 float
179 frame_rate,
180 shutter_angle;
181
182 char
183 frame_id[32],
184 slate[100],
185 reserve[56];
186} DPXFilmInfo;
187
188typedef struct _DPXImageElement
189{
190 unsigned int
191 data_sign,
192 low_data;
193
194 float
195 low_quantity;
196
197 unsigned int
198 high_data;
199
200 float
201 high_quantity;
202
203 unsigned char
204 descriptor,
cristyc7f92ea2013-01-10 19:59:00 +0000205 transfer_characteristic,
cristy3ed852e2009-09-05 21:47:34 +0000206 colorimetric,
207 bit_size;
208
209 unsigned short
210 packing,
211 encoding;
212
213 unsigned int
214 data_offset,
215 end_of_line_padding,
216 end_of_image_padding;
217
218 unsigned char
219 description[32];
220} DPXImageElement;
221
222typedef struct _DPXImageInfo
223{
224 unsigned short
225 orientation,
226 number_elements;
227
228 unsigned int
229 pixels_per_line,
230 lines_per_element;
231
232 DPXImageElement
233 image_element[8];
234
235 unsigned char
236 reserve[52];
237} DPXImageInfo;
238
239typedef struct _DPXOrientationInfo
240{
241 unsigned int
242 x_offset,
243 y_offset;
244
245 float
246 x_center,
247 y_center;
248
249 unsigned int
250 x_size,
251 y_size;
252
253 char
254 filename[100],
255 timestamp[24],
256 device[32],
257 serial[32];
258
259 unsigned short
260 border[4];
261
262 unsigned int
263 aspect_ratio[2];
264
265 unsigned char
266 reserve[28];
267} DPXOrientationInfo;
268
269typedef struct _DPXTelevisionInfo
270{
271 unsigned int
272 time_code,
273 user_bits;
274
275 unsigned char
276 interlace,
277 field_number,
278 video_signal,
279 padding;
280
281 float
282 horizontal_sample_rate,
283 vertical_sample_rate,
284 frame_rate,
285 time_offset,
286 gamma,
287 black_level,
288 black_gain,
289 break_point,
290 white_level,
291 integration_times;
292
293 char
294 reserve[76];
295} DPXTelevisionInfo;
296
297typedef struct _DPXUserInfo
298{
299 char
300 id[32];
301} DPXUserInfo;
302
303typedef struct DPXInfo
304{
305 DPXFileInfo
306 file;
307
308 DPXImageInfo
309 image;
310
311 DPXOrientationInfo
312 orientation;
313
314 DPXFilmInfo
315 film;
316
317 DPXTelevisionInfo
318 television;
319
320 DPXUserInfo
321 user;
322} DPXInfo;
323
324/*
325 Forward declaractions.
326*/
327static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +0000328 WriteDPXImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000329
330/*
331%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
332% %
333% %
334% %
335% I s D P X %
336% %
337% %
338% %
339%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
340%
341% IsDPX() returns MagickTrue if the image format type, identified by the
342% magick string, is DPX.
343%
344% The format of the IsDPX method is:
345%
346% MagickBooleanType IsDPX(const unsigned char *magick,const size_t extent)
347%
348% A description of each parameter follows:
349%
350% o magick: compare image format pattern against these bytes.
351%
352% o extent: Specifies the extent of the magick string.
353%
354*/
355static MagickBooleanType IsDPX(const unsigned char *magick,const size_t extent)
356{
357 if (extent < 4)
358 return(MagickFalse);
359 if (memcmp(magick,"SDPX",4) == 0)
360 return(MagickTrue);
361 if (memcmp(magick,"XPDS",4) == 0)
362 return(MagickTrue);
363 return(MagickFalse);
364}
365
366/*
367%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
368% %
369% %
370% %
371% R e a d D P X I m a g e %
372% %
373% %
374% %
375%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
376%
377% ReadDPXImage() reads an DPX X image file and returns it. It
378% allocates the memory necessary for the new Image structure and returns a
379% pointer to the new image.
380%
381% The format of the ReadDPXImage method is:
382%
383% Image *ReadDPXImage(const ImageInfo *image_info,ExceptionInfo *exception)
384%
385% A description of each parameter follows:
386%
387% o image_info: the image info.
388%
389% o exception: return any errors or warnings in this structure.
390%
391*/
392
cristy4ccdaa22012-11-05 16:58:06 +0000393static size_t GetBytesPerRow(const size_t columns,
394 const size_t samples_per_pixel,const size_t bits_per_pixel,
395 const MagickBooleanType pad)
cristy3ed852e2009-09-05 21:47:34 +0000396{
397 size_t
398 bytes_per_row;
399
400 switch (bits_per_pixel)
401 {
402 case 1:
403 {
cristy4ccdaa22012-11-05 16:58:06 +0000404 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
405 32);
cristy3ed852e2009-09-05 21:47:34 +0000406 break;
407 }
408 case 8:
409 default:
410 {
cristy4ccdaa22012-11-05 16:58:06 +0000411 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
412 32);
cristy3ed852e2009-09-05 21:47:34 +0000413 break;
414 }
415 case 10:
416 {
417 if (pad == MagickFalse)
418 {
cristy4ccdaa22012-11-05 16:58:06 +0000419 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+
420 31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000421 break;
422 }
cristyff024b42010-02-21 22:55:09 +0000423 bytes_per_row=4*(((size_t) (32*((samples_per_pixel*columns+2)/3))+31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000424 break;
425 }
426 case 12:
427 {
428 if (pad == MagickFalse)
429 {
cristy4ccdaa22012-11-05 16:58:06 +0000430 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+
431 31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000432 break;
433 }
434 bytes_per_row=2*(((size_t) (16*samples_per_pixel*columns)+15)/16);
435 break;
436 }
437 case 16:
438 {
cristy4ccdaa22012-11-05 16:58:06 +0000439 bytes_per_row=2*(((size_t) samples_per_pixel*columns*bits_per_pixel+8)/
440 16);
cristy3ed852e2009-09-05 21:47:34 +0000441 break;
442 }
443 case 32:
444 {
cristy4ccdaa22012-11-05 16:58:06 +0000445 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
446 32);
cristy3ed852e2009-09-05 21:47:34 +0000447 break;
448 }
449 case 64:
450 {
cristy4ccdaa22012-11-05 16:58:06 +0000451 bytes_per_row=8*(((size_t) samples_per_pixel*columns*bits_per_pixel+63)/
452 64);
cristy3ed852e2009-09-05 21:47:34 +0000453 break;
454 }
455 }
456 return(bytes_per_row);
457}
458
cristyc7f92ea2013-01-10 19:59:00 +0000459static const char *GetImageTransferCharacteristic(
460 const DPXTransferCharacteristic characteristic)
461{
462 const char
463 *transfer;
464
465 /*
466 Get the element transfer characteristic.
467 */
468 switch(characteristic)
469 {
470 case TransferCharacteristicUserDefined:
471 {
472 transfer="UserDefined";
473 break;
474 }
475 case TransferCharacteristicPrintingDensity:
476 {
477 transfer="PrintingDensity";
478 break;
479 }
480 case TransferCharacteristicLinear:
481 {
482 transfer="Linear";
483 break;
484 }
485 case TransferCharacteristicLogarithmic:
486 {
487 transfer="Logarithmic";
488 break;
489 }
490 case TransferCharacteristicUnspecifiedVideo:
491 {
492 transfer="UnspecifiedVideo";
493 break;
494 }
495 case TransferCharacteristicSMTPE274M:
496 {
497 transfer="SMTPE274M";
498 break;
499 }
500 case TransferCharacteristicITU_R709:
501 {
502 transfer="ITU-R709";
503 break;
504 }
505 case TransferCharacteristicITU_R601_625L:
506 {
507 transfer="ITU-R601-625L";
508 break;
509 }
510 case TransferCharacteristicITU_R601_525L:
511 {
512 transfer="ITU-R601-525L";
513 break;
514 }
515 case TransferCharacteristicNTSCCompositeVideo:
516 {
517 transfer="NTSCCompositeVideo";
518 break;
519 }
520 case TransferCharacteristicPALCompositeVideo:
521 {
522 transfer="PALCompositeVideo";
523 break;
524 }
525 case TransferCharacteristicZDepthLinear:
526 {
527 transfer="ZDepthLinear";
528 break;
529 }
530 case TransferCharacteristicZDepthHomogeneous:
531 {
532 transfer="ZDepthHomogeneous";
533 break;
534 }
535 default:
536 transfer="Reserved";
537 }
538 return(transfer);
539}
540
cristy3ed852e2009-09-05 21:47:34 +0000541static inline MagickBooleanType IsFloatDefined(const float value)
542{
543 union
544 {
545 unsigned int
546 unsigned_value;
547
cristy8a8e4682013-09-26 12:55:39 +0000548 float
cristy3ed852e2009-09-05 21:47:34 +0000549 float_value;
550 } quantum;
551
552 quantum.unsigned_value=0U;
cristy8a8e4682013-09-26 12:55:39 +0000553 quantum.float_value=(float) value;
cristy3ed852e2009-09-05 21:47:34 +0000554 if (quantum.unsigned_value == 0U)
555 return(MagickFalse);
556 return(MagickTrue);
557}
558
559static void SetPrimaryChromaticity(const DPXColorimetric colorimetric,
560 ChromaticityInfo *chromaticity_info)
561{
562 switch(colorimetric)
563 {
564 case SMTPE_274MColorimetric:
565 case ITU_R709Colorimetric:
566 {
567 chromaticity_info->red_primary.x=0.640;
568 chromaticity_info->red_primary.y=0.330;
569 chromaticity_info->red_primary.z=0.030;
570 chromaticity_info->green_primary.x=0.300;
571 chromaticity_info->green_primary.y=0.600;
572 chromaticity_info->green_primary.z=0.100;
573 chromaticity_info->blue_primary.x=0.150;
574 chromaticity_info->blue_primary.y=0.060;
575 chromaticity_info->blue_primary.z=0.790;
576 chromaticity_info->white_point.x=0.3127;
577 chromaticity_info->white_point.y=0.3290;
578 chromaticity_info->white_point.z=0.3582;
579 break;
580 }
581 case NTSCCompositeVideoColorimetric:
582 {
583 chromaticity_info->red_primary.x=0.67;
584 chromaticity_info->red_primary.y=0.33;
585 chromaticity_info->red_primary.z=0.00;
586 chromaticity_info->green_primary.x=0.21;
587 chromaticity_info->green_primary.y=0.71;
588 chromaticity_info->green_primary.z=0.08;
589 chromaticity_info->blue_primary.x=0.14;
590 chromaticity_info->blue_primary.y=0.08;
591 chromaticity_info->blue_primary.z=0.78;
592 chromaticity_info->white_point.x=0.310;
593 chromaticity_info->white_point.y=0.316;
594 chromaticity_info->white_point.z=0.374;
595 break;
596 }
597 case PALCompositeVideoColorimetric:
598 {
599 chromaticity_info->red_primary.x=0.640;
600 chromaticity_info->red_primary.y=0.330;
601 chromaticity_info->red_primary.z=0.030;
602 chromaticity_info->green_primary.x=0.290;
603 chromaticity_info->green_primary.y=0.600;
604 chromaticity_info->green_primary.z=0.110;
605 chromaticity_info->blue_primary.x=0.150;
606 chromaticity_info->blue_primary.y=0.060;
607 chromaticity_info->blue_primary.z=0.790;
608 chromaticity_info->white_point.x=0.3127;
609 chromaticity_info->white_point.y=0.3290;
610 chromaticity_info->white_point.z=0.3582;
611 break;
612 }
613 default:
614 break;
615 }
616}
617
cristybb503372010-05-27 20:51:26 +0000618static void TimeCodeToString(const size_t timestamp,char *code)
cristy3ed852e2009-09-05 21:47:34 +0000619{
620#define TimeFields 7
621
622 unsigned int
623 shift;
624
cristybb503372010-05-27 20:51:26 +0000625 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000626 i;
627
628 *code='\0';
629 shift=4*TimeFields;
630 for (i=0; i <= TimeFields; i++)
631 {
cristyb51dff52011-05-19 16:55:47 +0000632 (void) FormatLocaleString(code,MaxTextExtent-strlen(code),"%x",
cristy3ed852e2009-09-05 21:47:34 +0000633 (unsigned int) ((timestamp >> shift) & 0x0fU));
634 code++;
635 if (((i % 2) != 0) && (i < TimeFields))
636 *code++=':';
637 shift-=4;
638 *code='\0';
639 }
640}
641
642static Image *ReadDPXImage(const ImageInfo *image_info,ExceptionInfo *exception)
643{
644 char
645 magick[4],
646 value[MaxTextExtent];
647
648 DPXInfo
649 dpx;
650
651 Image
652 *image;
653
cristy3ed852e2009-09-05 21:47:34 +0000654 MagickBooleanType
655 status;
656
657 MagickOffsetType
658 offset;
659
cristyff024b42010-02-21 22:55:09 +0000660 QuantumInfo
661 *quantum_info;
662
cristy3ed852e2009-09-05 21:47:34 +0000663 QuantumType
664 quantum_type;
665
cristybb503372010-05-27 20:51:26 +0000666 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000667 i;
668
cristy3ed852e2009-09-05 21:47:34 +0000669 size_t
cristy202de442011-04-24 18:19:07 +0000670 extent,
671 samples_per_pixel;
672
673 ssize_t
674 count,
cristy04ea8a02012-09-30 15:23:28 +0000675 n,
cristy202de442011-04-24 18:19:07 +0000676 row,
677 y;
cristy3ed852e2009-09-05 21:47:34 +0000678
679 unsigned char
680 component_type;
681
cristy3ed852e2009-09-05 21:47:34 +0000682 /*
683 Open image file.
684 */
685 assert(image_info != (const ImageInfo *) NULL);
686 assert(image_info->signature == MagickSignature);
687 if (image_info->debug != MagickFalse)
688 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
689 image_info->filename);
690 assert(exception != (ExceptionInfo *) NULL);
691 assert(exception->signature == MagickSignature);
cristy9950d572011-10-01 18:22:35 +0000692 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000693 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
694 if (status == MagickFalse)
695 {
696 image=DestroyImageList(image);
697 return((Image *) NULL);
698 }
699 /*
700 Read DPX file header.
701 */
702 offset=0;
703 count=ReadBlob(image,4,(unsigned char *) magick);
704 offset+=count;
705 if ((count != 4) || ((LocaleNCompare(magick,"SDPX",4) != 0) &&
706 (LocaleNCompare((char *) magick,"XPDS",4) != 0)))
707 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
708 image->endian=LSBEndian;
709 if (LocaleNCompare(magick,"SDPX",4) == 0)
710 image->endian=MSBEndian;
711 (void) ResetMagickMemory(&dpx,0,sizeof(dpx));
712 dpx.file.image_offset=ReadBlobLong(image);
713 offset+=4;
714 offset+=ReadBlob(image,sizeof(dpx.file.version),(unsigned char *)
715 dpx.file.version);
716 (void) FormatImageProperty(image,"dpx:file.version","%.8s",dpx.file.version);
717 dpx.file.file_size=ReadBlobLong(image);
718 offset+=4;
719 dpx.file.ditto_key=ReadBlobLong(image);
720 offset+=4;
cristya230a612014-01-05 20:51:47 +0000721 if (dpx.file.ditto_key != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000722 (void) FormatImageProperty(image,"dpx:file.ditto.key","%u",
723 dpx.file.ditto_key);
724 dpx.file.generic_size=ReadBlobLong(image);
725 offset+=4;
726 dpx.file.industry_size=ReadBlobLong(image);
727 offset+=4;
728 dpx.file.user_size=ReadBlobLong(image);
729 offset+=4;
730 offset+=ReadBlob(image,sizeof(dpx.file.filename),(unsigned char *)
731 dpx.file.filename);
732 (void) FormatImageProperty(image,"dpx:file.filename","%.100s",
733 dpx.file.filename);
734 (void) FormatImageProperty(image,"document","%.100s",dpx.file.filename);
735 offset+=ReadBlob(image,sizeof(dpx.file.timestamp),(unsigned char *)
736 dpx.file.timestamp);
737 if (*dpx.file.timestamp != '\0')
738 (void) FormatImageProperty(image,"dpx:file.timestamp","%.24s",
739 dpx.file.timestamp);
740 offset+=ReadBlob(image,sizeof(dpx.file.creator),(unsigned char *)
741 dpx.file.creator);
742 if (*dpx.file.creator != '\0')
743 {
744 (void) FormatImageProperty(image,"dpx:file.creator","%.100s",
745 dpx.file.creator);
746 (void) FormatImageProperty(image,"software","%.100s",dpx.file.creator);
747 }
748 offset+=ReadBlob(image,sizeof(dpx.file.project),(unsigned char *)
749 dpx.file.project);
750 if (*dpx.file.project != '\0')
751 {
752 (void) FormatImageProperty(image,"dpx:file.project","%.200s",
753 dpx.file.project);
754 (void) FormatImageProperty(image,"comment","%.100s",dpx.file.project);
755 }
756 offset+=ReadBlob(image,sizeof(dpx.file.copyright),(unsigned char *)
757 dpx.file.copyright);
758 if (*dpx.file.copyright != '\0')
759 {
760 (void) FormatImageProperty(image,"dpx:file.copyright","%.200s",
761 dpx.file.copyright);
762 (void) FormatImageProperty(image,"copyright","%.100s",
763 dpx.file.copyright);
764 }
765 dpx.file.encrypt_key=ReadBlobLong(image);
766 offset+=4;
cristya230a612014-01-05 20:51:47 +0000767 if (dpx.file.encrypt_key != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000768 (void) FormatImageProperty(image,"dpx:file.encrypt_key","%u",
769 dpx.file.encrypt_key);
770 offset+=ReadBlob(image,sizeof(dpx.file.reserve),(unsigned char *)
771 dpx.file.reserve);
772 /*
773 Read DPX image header.
774 */
775 dpx.image.orientation=ReadBlobShort(image);
776 offset+=2;
cristy6310e8d2013-11-11 12:52:08 +0000777 if (dpx.image.orientation != (unsigned short) ~0)
cristy3ed852e2009-09-05 21:47:34 +0000778 (void) FormatImageProperty(image,"dpx:image.orientation","%d",
779 dpx.image.orientation);
780 switch (dpx.image.orientation)
781 {
782 default:
cristy202de442011-04-24 18:19:07 +0000783 case 0: image->orientation=TopLeftOrientation; break;
784 case 1: image->orientation=TopRightOrientation; break;
785 case 2: image->orientation=BottomLeftOrientation; break;
786 case 3: image->orientation=BottomRightOrientation; break;
787 case 4: image->orientation=LeftTopOrientation; break;
788 case 5: image->orientation=RightTopOrientation; break;
789 case 6: image->orientation=LeftBottomOrientation; break;
790 case 7: image->orientation=RightBottomOrientation; break;
cristy3ed852e2009-09-05 21:47:34 +0000791 }
792 dpx.image.number_elements=ReadBlobShort(image);
cristy7d3fc132014-11-23 16:36:24 +0000793 if (dpx.image.number_elements > 8)
794 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy3ed852e2009-09-05 21:47:34 +0000795 offset+=2;
796 dpx.image.pixels_per_line=ReadBlobLong(image);
797 offset+=4;
798 image->columns=dpx.image.pixels_per_line;
799 dpx.image.lines_per_element=ReadBlobLong(image);
800 offset+=4;
801 image->rows=dpx.image.lines_per_element;
802 for (i=0; i < 8; i++)
803 {
cristyc7f92ea2013-01-10 19:59:00 +0000804 char
805 property[MaxTextExtent];
806
cristy3ed852e2009-09-05 21:47:34 +0000807 dpx.image.image_element[i].data_sign=ReadBlobLong(image);
808 offset+=4;
809 dpx.image.image_element[i].low_data=ReadBlobLong(image);
810 offset+=4;
811 dpx.image.image_element[i].low_quantity=ReadBlobFloat(image);
812 offset+=4;
813 dpx.image.image_element[i].high_data=ReadBlobLong(image);
814 offset+=4;
815 dpx.image.image_element[i].high_quantity=ReadBlobFloat(image);
816 offset+=4;
817 dpx.image.image_element[i].descriptor=(unsigned char) ReadBlobByte(image);
818 offset++;
cristyc7f92ea2013-01-10 19:59:00 +0000819 dpx.image.image_element[i].transfer_characteristic=(unsigned char)
820 ReadBlobByte(image);
821 (void) FormatLocaleString(property,MaxTextExtent,
822 "dpx:image.element[%lu].transfer-characteristic",(long) i);
823 (void) FormatImageProperty(image,property,"%s",
824 GetImageTransferCharacteristic((DPXTransferCharacteristic)
825 dpx.image.image_element[i].transfer_characteristic));
cristy3ed852e2009-09-05 21:47:34 +0000826 offset++;
827 dpx.image.image_element[i].colorimetric=(unsigned char) ReadBlobByte(image);
828 offset++;
829 dpx.image.image_element[i].bit_size=(unsigned char) ReadBlobByte(image);
830 offset++;
831 dpx.image.image_element[i].packing=ReadBlobShort(image);
832 offset+=2;
833 dpx.image.image_element[i].encoding=ReadBlobShort(image);
834 offset+=2;
835 dpx.image.image_element[i].data_offset=ReadBlobLong(image);
836 offset+=4;
837 dpx.image.image_element[i].end_of_line_padding=ReadBlobLong(image);
838 offset+=4;
839 dpx.image.image_element[i].end_of_image_padding=ReadBlobLong(image);
840 offset+=4;
841 offset+=ReadBlob(image,sizeof(dpx.image.image_element[i].description),
842 (unsigned char *) dpx.image.image_element[i].description);
843 }
cristyb2c3f402012-05-13 18:05:12 +0000844 SetImageColorspace(image,RGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000845 offset+=ReadBlob(image,sizeof(dpx.image.reserve),(unsigned char *)
846 dpx.image.reserve);
cristy3ed852e2009-09-05 21:47:34 +0000847 if (dpx.file.image_offset >= 1664U)
848 {
849 /*
850 Read DPX orientation header.
851 */
852 dpx.orientation.x_offset=ReadBlobLong(image);
853 offset+=4;
cristya230a612014-01-05 20:51:47 +0000854 if (dpx.orientation.x_offset != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000855 (void) FormatImageProperty(image,"dpx:orientation.x_offset","%u",
856 dpx.orientation.x_offset);
857 dpx.orientation.y_offset=ReadBlobLong(image);
858 offset+=4;
cristya230a612014-01-05 20:51:47 +0000859 if (dpx.orientation.y_offset != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000860 (void) FormatImageProperty(image,"dpx:orientation.y_offset","%u",
861 dpx.orientation.y_offset);
862 dpx.orientation.x_center=ReadBlobFloat(image);
863 offset+=4;
864 if (IsFloatDefined(dpx.orientation.x_center) != MagickFalse)
865 (void) FormatImageProperty(image,"dpx:orientation.x_center","%g",
866 dpx.orientation.x_center);
867 dpx.orientation.y_center=ReadBlobFloat(image);
868 offset+=4;
869 if (IsFloatDefined(dpx.orientation.y_center) != MagickFalse)
870 (void) FormatImageProperty(image,"dpx:orientation.y_center","%g",
871 dpx.orientation.y_center);
872 dpx.orientation.x_size=ReadBlobLong(image);
873 offset+=4;
cristya230a612014-01-05 20:51:47 +0000874 if (dpx.orientation.x_size != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000875 (void) FormatImageProperty(image,"dpx:orientation.x_size","%u",
876 dpx.orientation.x_size);
877 dpx.orientation.y_size=ReadBlobLong(image);
878 offset+=4;
cristya230a612014-01-05 20:51:47 +0000879 if (dpx.orientation.y_size != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000880 (void) FormatImageProperty(image,"dpx:orientation.y_size","%u",
881 dpx.orientation.y_size);
882 offset+=ReadBlob(image,sizeof(dpx.orientation.filename),(unsigned char *)
883 dpx.orientation.filename);
884 if (*dpx.orientation.filename != '\0')
885 (void) FormatImageProperty(image,"dpx:orientation.filename","%.100s",
886 dpx.orientation.filename);
887 offset+=ReadBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *)
888 dpx.orientation.timestamp);
889 if (*dpx.orientation.timestamp != '\0')
890 (void) FormatImageProperty(image,"dpx:orientation.timestamp","%.24s",
891 dpx.orientation.timestamp);
892 offset+=ReadBlob(image,sizeof(dpx.orientation.device),(unsigned char *)
893 dpx.orientation.device);
894 if (*dpx.orientation.device != '\0')
895 (void) FormatImageProperty(image,"dpx:orientation.device","%.32s",
896 dpx.orientation.device);
897 offset+=ReadBlob(image,sizeof(dpx.orientation.serial),(unsigned char *)
898 dpx.orientation.serial);
899 if (*dpx.orientation.serial != '\0')
900 (void) FormatImageProperty(image,"dpx:orientation.serial","%.32s",
901 dpx.orientation.serial);
902 for (i=0; i < 4; i++)
903 {
904 dpx.orientation.border[i]=ReadBlobShort(image);
905 offset+=2;
906 }
dirk93b02b72013-11-16 16:03:36 +0000907 if ((dpx.orientation.border[0] != (unsigned short) (~0)) &&
908 (dpx.orientation.border[1] != (unsigned short) (~0)))
909 (void) FormatImageProperty(image,"dpx:orientation.border","%dx%d%+d%+d",
910 dpx.orientation.border[0],dpx.orientation.border[1],
cristy3ed852e2009-09-05 21:47:34 +0000911 dpx.orientation.border[2],dpx.orientation.border[3]);
912 for (i=0; i < 2; i++)
913 {
914 dpx.orientation.aspect_ratio[i]=ReadBlobLong(image);
915 offset+=4;
916 }
cristya230a612014-01-05 20:51:47 +0000917 if ((dpx.orientation.aspect_ratio[0] != ~0U) &&
918 (dpx.orientation.aspect_ratio[1] != ~0U))
cristy3ed852e2009-09-05 21:47:34 +0000919 (void) FormatImageProperty(image,"dpx:orientation.aspect_ratio",
920 "%ux%u",dpx.orientation.aspect_ratio[0],
921 dpx.orientation.aspect_ratio[1]);
922 offset+=ReadBlob(image,sizeof(dpx.orientation.reserve),(unsigned char *)
923 dpx.orientation.reserve);
924 }
925 if (dpx.file.image_offset >= 1920U)
926 {
927 /*
928 Read DPX film header.
929 */
930 offset+=ReadBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id);
cristy4d0ca342014-05-01 00:42:09 +0000931 if (*dpx.film.id != '\0')
cristy3ed852e2009-09-05 21:47:34 +0000932 (void) FormatImageProperty(image,"dpx:film.id","%.2s",dpx.film.id);
933 offset+=ReadBlob(image,sizeof(dpx.film.type),(unsigned char *)
934 dpx.film.type);
935 if (*dpx.film.type != '\0')
936 (void) FormatImageProperty(image,"dpx:film.type","%.2s",dpx.film.type);
937 offset+=ReadBlob(image,sizeof(dpx.film.offset),(unsigned char *)
938 dpx.film.offset);
939 if (*dpx.film.offset != '\0')
940 (void) FormatImageProperty(image,"dpx:film.offset","%.2s",
941 dpx.film.offset);
942 offset+=ReadBlob(image,sizeof(dpx.film.prefix),(unsigned char *)
943 dpx.film.prefix);
944 if (*dpx.film.prefix != '\0')
945 (void) FormatImageProperty(image,"dpx:film.prefix","%.6s",
946 dpx.film.prefix);
947 offset+=ReadBlob(image,sizeof(dpx.film.count),(unsigned char *)
948 dpx.film.count);
949 if (*dpx.film.count != '\0')
950 (void) FormatImageProperty(image,"dpx:film.count","%.4s",
951 dpx.film.count);
952 offset+=ReadBlob(image,sizeof(dpx.film.format),(unsigned char *)
953 dpx.film.format);
954 if (*dpx.film.format != '\0')
955 (void) FormatImageProperty(image,"dpx:film.format","%.4s",
956 dpx.film.format);
957 dpx.film.frame_position=ReadBlobLong(image);
958 offset+=4;
cristya230a612014-01-05 20:51:47 +0000959 if (dpx.film.frame_position != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000960 (void) FormatImageProperty(image,"dpx:film.frame_position","%u",
961 dpx.film.frame_position);
962 dpx.film.sequence_extent=ReadBlobLong(image);
963 offset+=4;
cristya230a612014-01-05 20:51:47 +0000964 if (dpx.film.sequence_extent != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000965 (void) FormatImageProperty(image,"dpx:film.sequence_extent","%u",
966 dpx.film.sequence_extent);
967 dpx.film.held_count=ReadBlobLong(image);
968 offset+=4;
cristya230a612014-01-05 20:51:47 +0000969 if (dpx.film.held_count != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000970 (void) FormatImageProperty(image,"dpx:film.held_count","%u",
971 dpx.film.held_count);
972 dpx.film.frame_rate=ReadBlobFloat(image);
973 offset+=4;
974 if (IsFloatDefined(dpx.film.frame_rate) != MagickFalse)
975 (void) FormatImageProperty(image,"dpx:film.frame_rate","%g",
976 dpx.film.frame_rate);
977 dpx.film.shutter_angle=ReadBlobFloat(image);
978 offset+=4;
979 if (IsFloatDefined(dpx.film.shutter_angle) != MagickFalse)
980 (void) FormatImageProperty(image,"dpx:film.shutter_angle","%g",
981 dpx.film.shutter_angle);
982 offset+=ReadBlob(image,sizeof(dpx.film.frame_id),(unsigned char *)
983 dpx.film.frame_id);
984 if (*dpx.film.frame_id != '\0')
985 (void) FormatImageProperty(image,"dpx:film.frame_id","%.32s",
986 dpx.film.frame_id);
987 offset+=ReadBlob(image,sizeof(dpx.film.slate),(unsigned char *)
988 dpx.film.slate);
989 if (*dpx.film.slate != '\0')
990 (void) FormatImageProperty(image,"dpx:film.slate","%.100s",
991 dpx.film.slate);
992 offset+=ReadBlob(image,sizeof(dpx.film.reserve),(unsigned char *)
993 dpx.film.reserve);
994 }
995 if (dpx.file.image_offset >= 2048U)
996 {
997 /*
998 Read DPX television header.
999 */
1000 dpx.television.time_code=(unsigned int) ReadBlobLong(image);
1001 offset+=4;
1002 TimeCodeToString(dpx.television.time_code,value);
cristyd15e6592011-10-15 00:13:06 +00001003 (void) SetImageProperty(image,"dpx:television.time.code",value,exception);
cristy3ed852e2009-09-05 21:47:34 +00001004 dpx.television.user_bits=(unsigned int) ReadBlobLong(image);
1005 offset+=4;
1006 TimeCodeToString(dpx.television.user_bits,value);
cristyd15e6592011-10-15 00:13:06 +00001007 (void) SetImageProperty(image,"dpx:television.user.bits",value,exception);
cristy3ed852e2009-09-05 21:47:34 +00001008 dpx.television.interlace=(unsigned char) ReadBlobByte(image);
1009 offset++;
1010 if (dpx.television.interlace != 0)
cristye8c25f92010-06-03 00:53:06 +00001011 (void) FormatImageProperty(image,"dpx:television.interlace","%.20g",
1012 (double) dpx.television.interlace);
cristy3ed852e2009-09-05 21:47:34 +00001013 dpx.television.field_number=(unsigned char) ReadBlobByte(image);
1014 offset++;
1015 if (dpx.television.field_number != 0)
cristye8c25f92010-06-03 00:53:06 +00001016 (void) FormatImageProperty(image,"dpx:television.field_number","%.20g",
1017 (double) dpx.television.field_number);
cristy3ed852e2009-09-05 21:47:34 +00001018 dpx.television.video_signal=(unsigned char) ReadBlobByte(image);
1019 offset++;
1020 if (dpx.television.video_signal != 0)
cristye8c25f92010-06-03 00:53:06 +00001021 (void) FormatImageProperty(image,"dpx:television.video_signal","%.20g",
1022 (double) dpx.television.video_signal);
cristy3ed852e2009-09-05 21:47:34 +00001023 dpx.television.padding=(unsigned char) ReadBlobByte(image);
1024 offset++;
1025 if (dpx.television.padding != 0)
1026 (void) FormatImageProperty(image,"dpx:television.padding","%d",
1027 dpx.television.padding);
1028 dpx.television.horizontal_sample_rate=ReadBlobFloat(image);
1029 offset+=4;
1030 if (IsFloatDefined(dpx.television.horizontal_sample_rate) != MagickFalse)
1031 (void) FormatImageProperty(image,
1032 "dpx:television.horizontal_sample_rate","%g",
1033 dpx.television.horizontal_sample_rate);
1034 dpx.television.vertical_sample_rate=ReadBlobFloat(image);
1035 offset+=4;
1036 if (IsFloatDefined(dpx.television.vertical_sample_rate) != MagickFalse)
1037 (void) FormatImageProperty(image,"dpx:television.vertical_sample_rate",
1038 "%g",dpx.television.vertical_sample_rate);
1039 dpx.television.frame_rate=ReadBlobFloat(image);
1040 offset+=4;
1041 if (IsFloatDefined(dpx.television.frame_rate) != MagickFalse)
1042 (void) FormatImageProperty(image,"dpx:television.frame_rate","%g",
1043 dpx.television.frame_rate);
1044 dpx.television.time_offset=ReadBlobFloat(image);
1045 offset+=4;
1046 if (IsFloatDefined(dpx.television.time_offset) != MagickFalse)
1047 (void) FormatImageProperty(image,"dpx:television.time_offset","%g",
1048 dpx.television.time_offset);
1049 dpx.television.gamma=ReadBlobFloat(image);
1050 offset+=4;
1051 if (IsFloatDefined(dpx.television.gamma) != MagickFalse)
1052 (void) FormatImageProperty(image,"dpx:television.gamma","%g",
1053 dpx.television.gamma);
1054 dpx.television.black_level=ReadBlobFloat(image);
1055 offset+=4;
1056 if (IsFloatDefined(dpx.television.black_level) != MagickFalse)
1057 (void) FormatImageProperty(image,"dpx:television.black_level","%g",
1058 dpx.television.black_level);
1059 dpx.television.black_gain=ReadBlobFloat(image);
1060 offset+=4;
1061 if (IsFloatDefined(dpx.television.black_gain) != MagickFalse)
1062 (void) FormatImageProperty(image,"dpx:television.black_gain","%g",
1063 dpx.television.black_gain);
1064 dpx.television.break_point=ReadBlobFloat(image);
1065 offset+=4;
1066 if (IsFloatDefined(dpx.television.break_point) != MagickFalse)
1067 (void) FormatImageProperty(image,"dpx:television.break_point","%g",
1068 dpx.television.break_point);
1069 dpx.television.white_level=ReadBlobFloat(image);
1070 offset+=4;
1071 if (IsFloatDefined(dpx.television.white_level) != MagickFalse)
1072 (void) FormatImageProperty(image,"dpx:television.white_level","%g",
1073 dpx.television.white_level);
1074 dpx.television.integration_times=ReadBlobFloat(image);
1075 offset+=4;
1076 if (IsFloatDefined(dpx.television.integration_times) != MagickFalse)
1077 (void) FormatImageProperty(image,"dpx:television.integration_times",
1078 "%g",dpx.television.integration_times);
1079 offset+=ReadBlob(image,sizeof(dpx.television.reserve),(unsigned char *)
1080 dpx.television.reserve);
1081 }
1082 if (dpx.file.image_offset > 2080U)
1083 {
1084 /*
1085 Read DPX user header.
1086 */
1087 offset+=ReadBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id);
1088 if (*dpx.user.id != '\0')
1089 (void) FormatImageProperty(image,"dpx:user.id","%.32s",dpx.user.id);
cristya230a612014-01-05 20:51:47 +00001090 if ((dpx.file.user_size != ~0U) &&
cristy3ed852e2009-09-05 21:47:34 +00001091 ((size_t) dpx.file.user_size > sizeof(dpx.user.id)))
1092 {
1093 StringInfo
1094 *profile;
1095
cristy60395292011-09-01 13:25:56 +00001096 profile=BlobToStringInfo((const void *) NULL,
1097 dpx.file.user_size-sizeof(dpx.user.id));
1098 if (profile == (StringInfo *) NULL)
1099 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +00001100 offset+=ReadBlob(image,GetStringInfoLength(profile),
1101 GetStringInfoDatum(profile));
cristy96cf0ac2014-02-25 12:28:17 +00001102 (void) SetImageProfile(image,"dpx:user-data",profile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001103 profile=DestroyStringInfo(profile);
1104 }
1105 }
cristy811f5172010-12-29 17:38:08 +00001106 for ( ; offset < (MagickOffsetType) dpx.file.image_offset; offset++)
cristy3ed852e2009-09-05 21:47:34 +00001107 (void) ReadBlobByte(image);
cristy3ed852e2009-09-05 21:47:34 +00001108 if (image_info->ping != MagickFalse)
1109 {
1110 (void) CloseBlob(image);
1111 return(GetFirstImageInList(image));
1112 }
cristy04ea8a02012-09-30 15:23:28 +00001113 for (n=0; n < (ssize_t) dpx.image.number_elements; n++)
cristy3ed852e2009-09-05 21:47:34 +00001114 {
cristy04ea8a02012-09-30 15:23:28 +00001115 /*
1116 Convert DPX raster image to pixel packets.
1117 */
cristya230a612014-01-05 20:51:47 +00001118 if ((dpx.image.image_element[n].data_offset != ~0U) &&
cristy04ea8a02012-09-30 15:23:28 +00001119 (dpx.image.image_element[n].data_offset != 0U))
cristyff024b42010-02-21 22:55:09 +00001120 {
cristy04ea8a02012-09-30 15:23:28 +00001121 MagickOffsetType
1122 data_offset;
1123
1124 data_offset=(MagickOffsetType) dpx.image.image_element[n].data_offset;
1125 if (data_offset < offset)
1126 offset=SeekBlob(image,data_offset,SEEK_SET);
1127 else
1128 for ( ; offset < data_offset; offset++)
1129 (void) ReadBlobByte(image);
1130 if (offset != data_offset)
1131 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
1132 }
cristyea485152012-10-03 11:48:50 +00001133 SetPrimaryChromaticity((DPXColorimetric)
1134 dpx.image.image_element[n].colorimetric,&image->chromaticity);
1135 image->depth=dpx.image.image_element[n].bit_size;
cristy04ea8a02012-09-30 15:23:28 +00001136 samples_per_pixel=1;
1137 quantum_type=GrayQuantum;
cristyea485152012-10-03 11:48:50 +00001138 component_type=dpx.image.image_element[n].descriptor;
cristy04ea8a02012-09-30 15:23:28 +00001139 switch (component_type)
1140 {
1141 case CbYCrY422ComponentType:
1142 {
1143 samples_per_pixel=2;
1144 quantum_type=CbYCrYQuantum;
1145 break;
cristyff024b42010-02-21 22:55:09 +00001146 }
cristy04ea8a02012-09-30 15:23:28 +00001147 case CbYACrYA4224ComponentType:
1148 case CbYCr444ComponentType:
1149 {
1150 samples_per_pixel=3;
1151 quantum_type=CbYCrQuantum;
1152 break;
1153 }
1154 case RGBComponentType:
1155 {
1156 samples_per_pixel=3;
1157 quantum_type=RGBQuantum;
1158 break;
1159 }
1160 case ABGRComponentType:
1161 case RGBAComponentType:
1162 {
1163 image->alpha_trait=BlendPixelTrait;
1164 samples_per_pixel=4;
1165 quantum_type=RGBAQuantum;
1166 break;
1167 }
1168 default:
1169 break;
1170 }
1171 switch (component_type)
1172 {
1173 case CbYCrY422ComponentType:
1174 case CbYACrYA4224ComponentType:
1175 case CbYCr444ComponentType:
1176 {
1177 SetImageColorspace(image,Rec709YCbCrColorspace,exception);
1178 break;
1179 }
1180 case LumaComponentType:
1181 {
cristyea485152012-10-03 11:48:50 +00001182 SetImageColorspace(image,GRAYColorspace,exception);
cristy04ea8a02012-09-30 15:23:28 +00001183 break;
1184 }
1185 default:
1186 {
1187 SetImageColorspace(image,sRGBColorspace,exception);
cristyc7f92ea2013-01-10 19:59:00 +00001188 if (dpx.image.image_element[n].transfer_characteristic == LogarithmicColorimetric)
cristy04ea8a02012-09-30 15:23:28 +00001189 SetImageColorspace(image,LogColorspace,exception);
cristyc7f92ea2013-01-10 19:59:00 +00001190 if (dpx.image.image_element[n].transfer_characteristic == PrintingDensityColorimetric)
cristy04ea8a02012-09-30 15:23:28 +00001191 SetImageColorspace(image,LogColorspace,exception);
1192 break;
1193 }
1194 }
1195 extent=GetBytesPerRow(image->columns,samples_per_pixel,image->depth,
1196 dpx.image.image_element[n].packing == 0 ? MagickFalse : MagickTrue);
1197 /*
1198 DPX any-bit pixel format.
1199 */
1200 status=MagickTrue;
1201 row=0;
1202 quantum_info=AcquireQuantumInfo(image_info,image);
1203 if (quantum_info == (QuantumInfo *) NULL)
1204 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1205 SetQuantumQuantum(quantum_info,32);
1206 SetQuantumPack(quantum_info,dpx.image.image_element[n].packing == 0 ?
1207 MagickTrue : MagickFalse);
1208 for (y=0; y < (ssize_t) image->rows; y++)
1209 {
1210 MagickBooleanType
1211 sync;
1212
1213 register Quantum
1214 *q;
1215
1216 size_t
1217 length;
1218
1219 ssize_t
1220 count,
1221 offset;
1222
1223 unsigned char
1224 *pixels;
1225
1226 if (status == MagickFalse)
1227 continue;
1228 pixels=GetQuantumPixels(quantum_info);
1229 {
1230 count=ReadBlob(image,extent,pixels);
1231 if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
1232 (image->previous == (Image *) NULL))
1233 {
1234 MagickBooleanType
1235 proceed;
1236
1237 proceed=SetImageProgress(image,LoadImageTag,(MagickOffsetType) row,
1238 image->rows);
1239 if (proceed == MagickFalse)
1240 status=MagickFalse;
1241 }
1242 offset=row++;
1243 }
1244 if (count != (ssize_t) extent)
1245 status=MagickFalse;
1246 q=QueueAuthenticPixels(image,0,offset,image->columns,1,exception);
1247 if (q == (Quantum *) NULL)
1248 {
1249 status=MagickFalse;
1250 continue;
1251 }
1252 length=ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1253 quantum_type,pixels,exception);
1254 (void) length;
1255 sync=SyncAuthenticPixels(image,exception);
1256 if (sync == MagickFalse)
1257 status=MagickFalse;
1258 }
1259 quantum_info=DestroyQuantumInfo(quantum_info);
1260 if (status == MagickFalse)
1261 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
1262 SetQuantumImageType(image,quantum_type);
1263 if (EOFBlob(image) != MagickFalse)
1264 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
1265 image->filename);
1266 if ((i+1) < (ssize_t) dpx.image.number_elements)
1267 {
1268 /*
1269 Allocate next image structure.
1270 */
1271 AcquireNextImage(image_info,image,exception);
1272 if (GetNextImageInList(image) == (Image *) NULL)
1273 {
1274 image=DestroyImageList(image);
1275 return((Image *) NULL);
1276 }
1277 image=SyncNextImageInList(image);
1278 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
1279 GetBlobSize(image));
1280 if (status == MagickFalse)
1281 break;
1282 }
cristyff024b42010-02-21 22:55:09 +00001283 }
cristy3ed852e2009-09-05 21:47:34 +00001284 (void) CloseBlob(image);
1285 return(GetFirstImageInList(image));
1286}
1287
1288/*
1289%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1290% %
1291% %
1292% %
1293% R e g i s t e r D P X I m a g e %
1294% %
1295% %
1296% %
1297%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1298%
1299% RegisterDPXImage() adds properties for the DPX image format to
1300% the list of supported formats. The properties include the image format
1301% tag, a method to read and/or write the format, whether the format
1302% supports the saving of more than one frame to the same file or blob,
1303% whether the format supports native in-memory I/O, and a brief
1304% description of the format.
1305%
1306% The format of the RegisterDPXImage method is:
1307%
cristybb503372010-05-27 20:51:26 +00001308% size_t RegisterDPXImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001309%
1310*/
cristybb503372010-05-27 20:51:26 +00001311ModuleExport size_t RegisterDPXImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001312{
1313 MagickInfo
1314 *entry;
1315
1316 static const char
1317 *DPXNote =
1318 {
1319 "Digital Moving Picture Exchange Bitmap, Version 2.0.\n"
1320 "See SMPTE 268M-2003 specification at http://www.smtpe.org\n"
1321 };
1322
1323 entry=SetMagickInfo("DPX");
1324 entry->decoder=(DecodeImageHandler *) ReadDPXImage;
1325 entry->encoder=(EncodeImageHandler *) WriteDPXImage;
1326 entry->magick=(IsImageFormatHandler *) IsDPX;
1327 entry->adjoin=MagickFalse;
cristy04ea8a02012-09-30 15:23:28 +00001328 entry->seekable_stream=MagickTrue;
cristy3ed852e2009-09-05 21:47:34 +00001329 entry->description=ConstantString("SMPTE 268M-2003 (DPX 2.0)");
1330 entry->note=ConstantString(DPXNote);
1331 entry->module=ConstantString("DPX");
1332 (void) RegisterMagickInfo(entry);
1333 return(MagickImageCoderSignature);
1334}
1335
1336/*
1337%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1338% %
1339% %
1340% %
1341% U n r e g i s t e r D P X I m a g e %
1342% %
1343% %
1344% %
1345%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1346%
1347% UnregisterDPXImage() removes format registrations made by the
1348% DPX module from the list of supported formats.
1349%
1350% The format of the UnregisterDPXImage method is:
1351%
1352% UnregisterDPXImage(void)
1353%
1354*/
1355ModuleExport void UnregisterDPXImage(void)
1356{
1357 (void) UnregisterMagickInfo("DPX");
1358}
1359
1360/*
1361%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1362% %
1363% %
1364% %
1365% W r i t e D P X I m a g e %
1366% %
1367% %
1368% %
1369%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1370%
1371% WriteDPXImage() writes an image in DPX encoded image format.
1372%
1373% The format of the WriteDPXImage method is:
1374%
cristy1e178e72011-08-28 19:44:34 +00001375% MagickBooleanType WriteDPXImage(const ImageInfo *image_info,
1376% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001377%
1378% A description of each parameter follows.
1379%
1380% o image_info: the image info.
1381%
1382% o image: The image.
1383%
cristy1e178e72011-08-28 19:44:34 +00001384% o exception: return any errors or warnings in this structure.
1385%
cristy3ed852e2009-09-05 21:47:34 +00001386*/
1387
cristy3ed852e2009-09-05 21:47:34 +00001388static unsigned int StringToTimeCode(const char *key)
1389{
1390 char
1391 buffer[2];
1392
cristybb503372010-05-27 20:51:26 +00001393 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001394 i;
1395
1396 unsigned int
1397 shift,
1398 value;
1399
1400 value=0;
1401 shift=28;
1402 buffer[1]='\0';
1403 for (i=0; (*key != 0) && (i < 11); i++)
1404 {
1405 if (isxdigit((int) ((unsigned char) *key)) == 0)
1406 {
1407 key++;
1408 continue;
1409 }
1410 buffer[0]=(*key++);
1411 value|=(unsigned int) ((strtol(buffer,(char **) NULL,16)) << shift);
1412 shift-=4;
1413 }
1414 return(value);
1415}
1416
cristy1e178e72011-08-28 19:44:34 +00001417static MagickBooleanType WriteDPXImage(const ImageInfo *image_info,Image *image,
1418 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001419{
1420 const char
1421 *value;
1422
1423 const StringInfo
1424 *profile;
1425
1426 DPXInfo
1427 dpx;
1428
cristybccc4f42011-11-24 17:57:52 +00001429 GeometryInfo
1430 geometry_info;
1431
cristy3ed852e2009-09-05 21:47:34 +00001432 MagickBooleanType
1433 status;
1434
1435 MagickOffsetType
1436 offset;
1437
1438 MagickStatusType
1439 flags;
1440
cristy3ed852e2009-09-05 21:47:34 +00001441 QuantumInfo
1442 *quantum_info;
1443
1444 QuantumType
1445 quantum_type;
1446
cristy4c08aed2011-07-01 19:47:50 +00001447 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +00001448 *p;
1449
cristybb503372010-05-27 20:51:26 +00001450 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001451 i;
1452
cristy1e178e72011-08-28 19:44:34 +00001453 size_t
1454 extent;
1455
cristy202de442011-04-24 18:19:07 +00001456 ssize_t
1457 count,
1458 horizontal_factor,
1459 vertical_factor,
1460 y;
1461
cristy3ed852e2009-09-05 21:47:34 +00001462 time_t
1463 seconds;
1464
1465 unsigned char
1466 *pixels;
1467
1468 /*
1469 Open output image file.
1470 */
1471 assert(image_info != (const ImageInfo *) NULL);
1472 assert(image_info->signature == MagickSignature);
1473 assert(image != (Image *) NULL);
1474 assert(image->signature == MagickSignature);
1475 if (image->debug != MagickFalse)
1476 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1477 horizontal_factor=4;
1478 vertical_factor=4;
1479 if (image_info->sampling_factor != (char *) NULL)
1480 {
1481 GeometryInfo
1482 geometry_info;
1483
1484 MagickStatusType
1485 flags;
1486
1487 flags=ParseGeometry(image_info->sampling_factor,&geometry_info);
cristybb503372010-05-27 20:51:26 +00001488 horizontal_factor=(ssize_t) geometry_info.rho;
1489 vertical_factor=(ssize_t) geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +00001490 if ((flags & SigmaValue) == 0)
1491 vertical_factor=horizontal_factor;
1492 if ((horizontal_factor != 1) && (horizontal_factor != 2) &&
1493 (horizontal_factor != 4) && (vertical_factor != 1) &&
1494 (vertical_factor != 2) && (vertical_factor != 4))
1495 ThrowWriterException(CorruptImageError,"UnexpectedSamplingFactor");
1496 }
1497 if ((image->colorspace == YCbCrColorspace) &&
1498 ((horizontal_factor == 2) || (vertical_factor == 2)))
1499 if ((image->columns % 2) != 0)
1500 image->columns++;
cristy3a37efd2011-08-28 20:31:03 +00001501 assert(exception != (ExceptionInfo *) NULL);
1502 assert(exception->signature == MagickSignature);
cristy1e178e72011-08-28 19:44:34 +00001503 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +00001504 if (status == MagickFalse)
1505 return(status);
1506 /*
1507 Write file header.
1508 */
1509 (void) ResetMagickMemory(&dpx,0,sizeof(dpx));
1510 offset=0;
1511 dpx.file.magic=0x53445058U;
1512 offset+=WriteBlobLong(image,dpx.file.magic);
1513 dpx.file.image_offset=0x2000U;
cristy96cf0ac2014-02-25 12:28:17 +00001514 profile=GetImageProfile(image,"dpx:user-data");
cristy3ed852e2009-09-05 21:47:34 +00001515 if (profile != (StringInfo *) NULL)
1516 {
cristy61047b62010-05-22 02:15:20 +00001517 if (GetStringInfoLength(profile) > 1048576)
1518 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
cristy3ed852e2009-09-05 21:47:34 +00001519 dpx.file.image_offset+=(unsigned int) GetStringInfoLength(profile);
1520 dpx.file.image_offset=(((dpx.file.image_offset+0x2000-1)/0x2000)*0x2000);
1521 }
1522 offset+=WriteBlobLong(image,dpx.file.image_offset);
cristy4fab6632014-05-12 00:38:45 +00001523 (void) strncpy(dpx.file.version,"V2.0",sizeof(dpx.file.version)-1);
cristy3ed852e2009-09-05 21:47:34 +00001524 offset+=WriteBlob(image,8,(unsigned char *) &dpx.file.version);
1525 dpx.file.file_size=(unsigned int) (4U*image->columns*image->rows+
1526 dpx.file.image_offset);
1527 offset+=WriteBlobLong(image,dpx.file.file_size);
1528 dpx.file.ditto_key=1U; /* new frame */
1529 offset+=WriteBlobLong(image,dpx.file.ditto_key);
1530 dpx.file.generic_size=0x00000680U;
1531 offset+=WriteBlobLong(image,dpx.file.generic_size);
1532 dpx.file.industry_size=0x00000180U;
1533 offset+=WriteBlobLong(image,dpx.file.industry_size);
1534 dpx.file.user_size=0;
1535 if (profile != (StringInfo *) NULL)
1536 {
1537 dpx.file.user_size+=(unsigned int) GetStringInfoLength(profile);
1538 dpx.file.user_size=(((dpx.file.user_size+0x2000-1)/0x2000)*0x2000);
1539 }
1540 offset+=WriteBlobLong(image,dpx.file.user_size);
cristy96cf0ac2014-02-25 12:28:17 +00001541 value=GetImageArtifact(image,"dpx:file.filename");
cristy3ed852e2009-09-05 21:47:34 +00001542 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001543 (void) strncpy(dpx.file.filename,value,sizeof(dpx.file.filename)-1);
cristy3ed852e2009-09-05 21:47:34 +00001544 offset+=WriteBlob(image,sizeof(dpx.file.filename),(unsigned char *)
1545 dpx.file.filename);
1546 seconds=time((time_t *) NULL);
1547 (void) FormatMagickTime(seconds,sizeof(dpx.file.timestamp),
1548 dpx.file.timestamp);
1549 offset+=WriteBlob(image,sizeof(dpx.file.timestamp),(unsigned char *)
1550 dpx.file.timestamp);
cristybb503372010-05-27 20:51:26 +00001551 (void) strncpy(dpx.file.creator,GetMagickVersion((size_t *) NULL),
cristy4fab6632014-05-12 00:38:45 +00001552 sizeof(dpx.file.creator)-1);
cristy96cf0ac2014-02-25 12:28:17 +00001553 value=GetImageArtifact(image,"dpx:file.creator");
cristy3ed852e2009-09-05 21:47:34 +00001554 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001555 (void) strncpy(dpx.file.creator,value,sizeof(dpx.file.creator)-1);
cristy3ed852e2009-09-05 21:47:34 +00001556 offset+=WriteBlob(image,sizeof(dpx.file.creator),(unsigned char *)
1557 dpx.file.creator);
cristy96cf0ac2014-02-25 12:28:17 +00001558 value=GetImageArtifact(image,"dpx:file.project");
cristy3ed852e2009-09-05 21:47:34 +00001559 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001560 (void) strncpy(dpx.file.project,value,sizeof(dpx.file.project)-1);
cristy3ed852e2009-09-05 21:47:34 +00001561 offset+=WriteBlob(image,sizeof(dpx.file.project),(unsigned char *)
1562 dpx.file.project);
cristy96cf0ac2014-02-25 12:28:17 +00001563 value=GetImageArtifact(image,"dpx:file.copyright");
cristy3ed852e2009-09-05 21:47:34 +00001564 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001565 (void) strncpy(dpx.file.copyright,value,sizeof(dpx.file.copyright)-1);
cristy3ed852e2009-09-05 21:47:34 +00001566 offset+=WriteBlob(image,sizeof(dpx.file.copyright),(unsigned char *)
1567 dpx.file.copyright);
cristy466a68c2013-11-08 15:13:21 +00001568 dpx.file.encrypt_key=(~0U);
cristy3ed852e2009-09-05 21:47:34 +00001569 offset+=WriteBlobLong(image,dpx.file.encrypt_key);
1570 offset+=WriteBlob(image,sizeof(dpx.file.reserve),(unsigned char *)
1571 dpx.file.reserve);
1572 /*
1573 Write image header.
1574 */
cristye7820582013-01-01 23:42:55 +00001575 switch (image->orientation)
1576 {
1577 default:
1578 case TopLeftOrientation: dpx.image.orientation=0; break;
1579 case TopRightOrientation: dpx.image.orientation=1; break;
1580 case BottomLeftOrientation: dpx.image.orientation=2; break;
1581 case BottomRightOrientation: dpx.image.orientation=3; break;
1582 case LeftTopOrientation: dpx.image.orientation=4; break;
1583 case RightTopOrientation: dpx.image.orientation=5; break;
1584 case LeftBottomOrientation: dpx.image.orientation=6; break;
1585 case RightBottomOrientation: dpx.image.orientation=7; break;
1586 }
cristy3ed852e2009-09-05 21:47:34 +00001587 offset+=WriteBlobShort(image,dpx.image.orientation);
1588 dpx.image.number_elements=1;
1589 offset+=WriteBlobShort(image,dpx.image.number_elements);
1590 if ((image->columns != (unsigned int) image->columns) ||
1591 (image->rows != (unsigned int) image->rows))
1592 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
1593 offset+=WriteBlobLong(image,(unsigned int) image->columns);
1594 offset+=WriteBlobLong(image,(unsigned int) image->rows);
1595 for (i=0; i < 8; i++)
1596 {
1597 dpx.image.image_element[i].data_sign=0U;
1598 offset+=WriteBlobLong(image,dpx.image.image_element[i].data_sign);
1599 dpx.image.image_element[i].low_data=0U;
1600 offset+=WriteBlobLong(image,dpx.image.image_element[i].low_data);
1601 dpx.image.image_element[i].low_quantity=0.0f;
1602 offset+=WriteBlobFloat(image,dpx.image.image_element[i].low_quantity);
1603 dpx.image.image_element[i].high_data=0U;
1604 offset+=WriteBlobLong(image,dpx.image.image_element[i].high_data);
1605 dpx.image.image_element[i].high_quantity=0.0f;
1606 offset+=WriteBlobFloat(image,dpx.image.image_element[i].high_quantity);
1607 dpx.image.image_element[i].descriptor=0;
1608 if (i == 0)
1609 switch (image->colorspace)
1610 {
1611 case Rec601YCbCrColorspace:
1612 case Rec709YCbCrColorspace:
1613 case YCbCrColorspace:
1614 {
1615 dpx.image.image_element[i].descriptor=CbYCr444ComponentType;
cristy35553db2014-11-23 15:43:29 +00001616 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001617 dpx.image.image_element[i].descriptor=CbYCrA4444ComponentType;
1618 break;
1619 }
1620 default:
1621 {
1622 dpx.image.image_element[i].descriptor=RGBComponentType;
cristy35553db2014-11-23 15:43:29 +00001623 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001624 dpx.image.image_element[i].descriptor=RGBAComponentType;
cristyf59a8922010-02-28 19:51:23 +00001625 if ((image_info->type != TrueColorType) &&
cristy35553db2014-11-23 15:43:29 +00001626 (image->alpha_trait != BlendPixelTrait) &&
cristy1e178e72011-08-28 19:44:34 +00001627 (IsImageGray(image,exception) != MagickFalse))
cristycaac2942009-10-01 13:36:18 +00001628 dpx.image.image_element[i].descriptor=LumaComponentType;
cristy3ed852e2009-09-05 21:47:34 +00001629 break;
1630 }
1631 }
1632 offset+=WriteBlobByte(image,dpx.image.image_element[i].descriptor);
cristyc7f92ea2013-01-10 19:59:00 +00001633 dpx.image.image_element[i].transfer_characteristic=0;
cristy3ed852e2009-09-05 21:47:34 +00001634 if (image->colorspace == LogColorspace)
cristyc7f92ea2013-01-10 19:59:00 +00001635 dpx.image.image_element[0].transfer_characteristic=
1636 PrintingDensityColorimetric;
1637 offset+=WriteBlobByte(image,
1638 dpx.image.image_element[i].transfer_characteristic);
cristy3ed852e2009-09-05 21:47:34 +00001639 dpx.image.image_element[i].colorimetric=0;
1640 offset+=WriteBlobByte(image,dpx.image.image_element[i].colorimetric);
1641 dpx.image.image_element[i].bit_size=0;
1642 if (i == 0)
1643 dpx.image.image_element[i].bit_size=(unsigned char) image->depth;
1644 offset+=WriteBlobByte(image,dpx.image.image_element[i].bit_size);
1645 dpx.image.image_element[i].packing=0;
1646 if ((image->depth == 10) || (image->depth == 12))
1647 dpx.image.image_element[i].packing=1;
1648 offset+=WriteBlobShort(image,dpx.image.image_element[i].packing);
1649 dpx.image.image_element[i].encoding=0;
1650 offset+=WriteBlobShort(image,dpx.image.image_element[i].encoding);
1651 dpx.image.image_element[i].data_offset=0U;
1652 if (i == 0)
1653 dpx.image.image_element[i].data_offset=dpx.file.image_offset;
1654 offset+=WriteBlobLong(image,dpx.image.image_element[i].data_offset);
1655 dpx.image.image_element[i].end_of_line_padding=0U;
1656 offset+=WriteBlobLong(image,dpx.image.image_element[i].end_of_line_padding);
1657 offset+=WriteBlobLong(image,
1658 dpx.image.image_element[i].end_of_image_padding);
1659 offset+=WriteBlob(image,sizeof(dpx.image.image_element[i].description),
1660 (unsigned char *) dpx.image.image_element[i].description);
1661 }
1662 offset+=WriteBlob(image,sizeof(dpx.image.reserve),(unsigned char *)
1663 dpx.image.reserve);
1664 /*
1665 Write orientation header.
1666 */
1667 if ((image->rows != image->magick_rows) ||
1668 (image->columns != image->magick_columns))
1669 {
1670 /*
1671 These properties are not valid if image size changed.
1672 */
1673 (void) DeleteImageProperty(image,"dpx:orientation.x_offset");
1674 (void) DeleteImageProperty(image,"dpx:orientation.y_offset");
1675 (void) DeleteImageProperty(image,"dpx:orientation.x_center");
1676 (void) DeleteImageProperty(image,"dpx:orientation.y_center");
1677 (void) DeleteImageProperty(image,"dpx:orientation.x_size");
1678 (void) DeleteImageProperty(image,"dpx:orientation.y_size");
1679 }
1680 dpx.orientation.x_offset=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001681 value=GetImageArtifact(image,"dpx:orientation.x_offset");
cristy3ed852e2009-09-05 21:47:34 +00001682 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001683 dpx.orientation.x_offset=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001684 offset+=WriteBlobLong(image,dpx.orientation.x_offset);
1685 dpx.orientation.y_offset=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001686 value=GetImageArtifact(image,"dpx:orientation.y_offset");
cristy3ed852e2009-09-05 21:47:34 +00001687 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001688 dpx.orientation.y_offset=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001689 offset+=WriteBlobLong(image,dpx.orientation.y_offset);
1690 dpx.orientation.x_center=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001691 value=GetImageArtifact(image,"dpx:orientation.x_center");
cristy3ed852e2009-09-05 21:47:34 +00001692 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001693 dpx.orientation.x_center=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001694 offset+=WriteBlobFloat(image,dpx.orientation.x_center);
1695 dpx.orientation.y_center=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001696 value=GetImageArtifact(image,"dpx:orientation.y_center");
cristy3ed852e2009-09-05 21:47:34 +00001697 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001698 dpx.orientation.y_center=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001699 offset+=WriteBlobFloat(image,dpx.orientation.y_center);
1700 dpx.orientation.x_size=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001701 value=GetImageArtifact(image,"dpx:orientation.x_size");
cristy3ed852e2009-09-05 21:47:34 +00001702 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001703 dpx.orientation.x_size=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001704 offset+=WriteBlobLong(image,dpx.orientation.x_size);
1705 dpx.orientation.y_size=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001706 value=GetImageArtifact(image,"dpx:orientation.y_size");
cristy3ed852e2009-09-05 21:47:34 +00001707 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001708 dpx.orientation.y_size=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001709 offset+=WriteBlobLong(image,dpx.orientation.y_size);
cristy96cf0ac2014-02-25 12:28:17 +00001710 value=GetImageArtifact(image,"dpx:orientation.filename");
cristy3ed852e2009-09-05 21:47:34 +00001711 if (value != (const char *) NULL)
1712 (void) strncpy(dpx.orientation.filename,value,
cristy4fab6632014-05-12 00:38:45 +00001713 sizeof(dpx.orientation.filename)-1);
cristy3ed852e2009-09-05 21:47:34 +00001714 offset+=WriteBlob(image,sizeof(dpx.orientation.filename),(unsigned char *)
1715 dpx.orientation.filename);
1716 offset+=WriteBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *)
1717 dpx.orientation.timestamp);
cristy96cf0ac2014-02-25 12:28:17 +00001718 value=GetImageArtifact(image,"dpx:orientation.device");
cristy3ed852e2009-09-05 21:47:34 +00001719 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001720 (void) strncpy(dpx.orientation.device,value,
1721 sizeof(dpx.orientation.device)-1);
cristy3ed852e2009-09-05 21:47:34 +00001722 offset+=WriteBlob(image,sizeof(dpx.orientation.device),(unsigned char *)
1723 dpx.orientation.device);
cristy96cf0ac2014-02-25 12:28:17 +00001724 value=GetImageArtifact(image,"dpx:orientation.serial");
cristy7959f822010-03-07 21:47:41 +00001725 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001726 (void) strncpy(dpx.orientation.serial,value,
1727 sizeof(dpx.orientation.serial)-1);
cristy3ed852e2009-09-05 21:47:34 +00001728 offset+=WriteBlob(image,sizeof(dpx.orientation.serial),(unsigned char *)
1729 dpx.orientation.serial);
1730 for (i=0; i < 4; i++)
1731 dpx.orientation.border[i]=0;
cristy96cf0ac2014-02-25 12:28:17 +00001732 value=GetImageArtifact(image,"dpx:orientation.border");
cristy3ed852e2009-09-05 21:47:34 +00001733 if (value != (const char *) NULL)
1734 {
1735 flags=ParseGeometry(value,&geometry_info);
1736 if ((flags & SigmaValue) == 0)
1737 geometry_info.sigma=geometry_info.rho;
1738 dpx.orientation.border[0]=(unsigned short) (geometry_info.rho+0.5);
1739 dpx.orientation.border[1]=(unsigned short) (geometry_info.sigma+0.5);
1740 dpx.orientation.border[2]=(unsigned short) (geometry_info.xi+0.5);
1741 dpx.orientation.border[3]=(unsigned short) (geometry_info.psi+0.5);
1742 }
1743 for (i=0; i < 4; i++)
1744 offset+=WriteBlobShort(image,dpx.orientation.border[i]);
1745 for (i=0; i < 2; i++)
1746 dpx.orientation.aspect_ratio[i]=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001747 value=GetImageArtifact(image,"dpx:orientation.aspect_ratio");
cristy3ed852e2009-09-05 21:47:34 +00001748 if (value != (const char *) NULL)
1749 {
1750 flags=ParseGeometry(value,&geometry_info);
1751 if ((flags & SigmaValue) == 0)
1752 geometry_info.sigma=geometry_info.rho;
1753 dpx.orientation.aspect_ratio[0]=(unsigned int) (geometry_info.rho+0.5);
1754 dpx.orientation.aspect_ratio[1]=(unsigned int) (geometry_info.sigma+0.5);
1755 }
1756 for (i=0; i < 2; i++)
1757 offset+=WriteBlobLong(image,dpx.orientation.aspect_ratio[i]);
1758 offset+=WriteBlob(image,sizeof(dpx.orientation.reserve),(unsigned char *)
1759 dpx.orientation.reserve);
1760 /*
1761 Write film header.
1762 */
cristyc69f5e42014-04-18 11:05:25 +00001763 (void) ResetMagickMemory(dpx.film.id,0,sizeof(dpx.film.id));
cristy96cf0ac2014-02-25 12:28:17 +00001764 value=GetImageArtifact(image,"dpx:film.id");
cristy3ed852e2009-09-05 21:47:34 +00001765 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001766 (void) strncpy(dpx.film.id,value,sizeof(dpx.film.id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001767 offset+=WriteBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id);
cristyc69f5e42014-04-18 11:05:25 +00001768 (void) ResetMagickMemory(dpx.film.type,0,sizeof(dpx.film.type));
cristy96cf0ac2014-02-25 12:28:17 +00001769 value=GetImageArtifact(image,"dpx:film.type");
cristy3ed852e2009-09-05 21:47:34 +00001770 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001771 (void) strncpy(dpx.film.type,value,sizeof(dpx.film.type)-1);
cristy3ed852e2009-09-05 21:47:34 +00001772 offset+=WriteBlob(image,sizeof(dpx.film.type),(unsigned char *)
1773 dpx.film.type);
cristyc69f5e42014-04-18 11:05:25 +00001774 (void) ResetMagickMemory(dpx.film.offset,0,sizeof(dpx.film.offset));
cristy96cf0ac2014-02-25 12:28:17 +00001775 value=GetImageArtifact(image,"dpx:film.offset");
cristy3ed852e2009-09-05 21:47:34 +00001776 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001777 (void) strncpy(dpx.film.offset,value,sizeof(dpx.film.offset)-1);
cristy3ed852e2009-09-05 21:47:34 +00001778 offset+=WriteBlob(image,sizeof(dpx.film.offset),(unsigned char *)
1779 dpx.film.offset);
cristyc69f5e42014-04-18 11:05:25 +00001780 (void) ResetMagickMemory(dpx.film.prefix,0,sizeof(dpx.film.prefix));
cristy96cf0ac2014-02-25 12:28:17 +00001781 value=GetImageArtifact(image,"dpx:film.prefix");
cristy3ed852e2009-09-05 21:47:34 +00001782 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001783 (void) strncpy(dpx.film.prefix,value,sizeof(dpx.film.prefix)-1);
cristy3ed852e2009-09-05 21:47:34 +00001784 offset+=WriteBlob(image,sizeof(dpx.film.prefix),(unsigned char *)
1785 dpx.film.prefix);
cristyc69f5e42014-04-18 11:05:25 +00001786 (void) ResetMagickMemory(dpx.film.count,0,sizeof(dpx.film.count));
cristy96cf0ac2014-02-25 12:28:17 +00001787 value=GetImageArtifact(image,"dpx:film.count");
cristy3ed852e2009-09-05 21:47:34 +00001788 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001789 (void) strncpy(dpx.film.count,value,sizeof(dpx.film.count)-1);
cristy3ed852e2009-09-05 21:47:34 +00001790 offset+=WriteBlob(image,sizeof(dpx.film.count),(unsigned char *)
1791 dpx.film.count);
cristyc69f5e42014-04-18 11:05:25 +00001792 (void) ResetMagickMemory(dpx.film.format,0,sizeof(dpx.film.format));
cristy96cf0ac2014-02-25 12:28:17 +00001793 value=GetImageArtifact(image,"dpx:film.format");
cristy3ed852e2009-09-05 21:47:34 +00001794 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001795 (void) strncpy(dpx.film.format,value,sizeof(dpx.film.format)-1);
cristy3ed852e2009-09-05 21:47:34 +00001796 offset+=WriteBlob(image,sizeof(dpx.film.format),(unsigned char *)
1797 dpx.film.format);
1798 dpx.film.frame_position=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001799 value=GetImageArtifact(image,"dpx:film.frame_position");
cristy3ed852e2009-09-05 21:47:34 +00001800 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001801 dpx.film.frame_position=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001802 offset+=WriteBlobLong(image,dpx.film.frame_position);
1803 dpx.film.sequence_extent=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001804 value=GetImageArtifact(image,"dpx:film.sequence_extent");
cristy3ed852e2009-09-05 21:47:34 +00001805 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001806 dpx.film.sequence_extent=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001807 offset+=WriteBlobLong(image,dpx.film.sequence_extent);
1808 dpx.film.held_count=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001809 value=GetImageArtifact(image,"dpx:film.held_count");
cristy3ed852e2009-09-05 21:47:34 +00001810 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001811 dpx.film.held_count=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001812 offset+=WriteBlobLong(image,dpx.film.held_count);
1813 dpx.film.frame_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001814 value=GetImageArtifact(image,"dpx:film.frame_rate");
cristy3ed852e2009-09-05 21:47:34 +00001815 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001816 dpx.film.frame_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001817 offset+=WriteBlobFloat(image,dpx.film.frame_rate);
1818 dpx.film.shutter_angle=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001819 value=GetImageArtifact(image,"dpx:film.shutter_angle");
cristy3ed852e2009-09-05 21:47:34 +00001820 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001821 dpx.film.shutter_angle=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001822 offset+=WriteBlobFloat(image,dpx.film.shutter_angle);
cristyc69f5e42014-04-18 11:05:25 +00001823 (void) ResetMagickMemory(dpx.film.frame_id,0,sizeof(dpx.film.frame_id));
cristy96cf0ac2014-02-25 12:28:17 +00001824 value=GetImageArtifact(image,"dpx:film.frame_id");
cristy3ed852e2009-09-05 21:47:34 +00001825 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001826 (void) strncpy(dpx.film.frame_id,value,sizeof(dpx.film.frame_id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001827 offset+=WriteBlob(image,sizeof(dpx.film.frame_id),(unsigned char *)
1828 dpx.film.frame_id);
cristy96cf0ac2014-02-25 12:28:17 +00001829 value=GetImageArtifact(image,"dpx:film.slate");
cristy3ed852e2009-09-05 21:47:34 +00001830 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001831 (void) strncpy(dpx.film.slate,value,sizeof(dpx.film.slate)-1);
cristy3ed852e2009-09-05 21:47:34 +00001832 offset+=WriteBlob(image,sizeof(dpx.film.slate),(unsigned char *)
1833 dpx.film.slate);
1834 offset+=WriteBlob(image,sizeof(dpx.film.reserve),(unsigned char *)
1835 dpx.film.reserve);
1836 /*
1837 Write television header.
1838 */
cristy96cf0ac2014-02-25 12:28:17 +00001839 value=GetImageArtifact(image,"dpx:television.time.code");
cristy3ed852e2009-09-05 21:47:34 +00001840 if (value != (const char *) NULL)
1841 dpx.television.time_code=StringToTimeCode(value);
1842 offset+=WriteBlobLong(image,dpx.television.time_code);
cristy96cf0ac2014-02-25 12:28:17 +00001843 value=GetImageArtifact(image,"dpx:television.user.bits");
cristy3ed852e2009-09-05 21:47:34 +00001844 if (value != (const char *) NULL)
1845 dpx.television.user_bits=StringToTimeCode(value);
1846 offset+=WriteBlobLong(image,dpx.television.user_bits);
cristy96cf0ac2014-02-25 12:28:17 +00001847 value=GetImageArtifact(image,"dpx:television.interlace");
cristy3ed852e2009-09-05 21:47:34 +00001848 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001849 dpx.television.interlace=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001850 offset+=WriteBlobByte(image,dpx.television.interlace);
cristy96cf0ac2014-02-25 12:28:17 +00001851 value=GetImageArtifact(image,"dpx:television.field_number");
cristy3ed852e2009-09-05 21:47:34 +00001852 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001853 dpx.television.field_number=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001854 offset+=WriteBlobByte(image,dpx.television.field_number);
1855 dpx.television.video_signal=0;
cristy96cf0ac2014-02-25 12:28:17 +00001856 value=GetImageArtifact(image,"dpx:television.video_signal");
cristy3ed852e2009-09-05 21:47:34 +00001857 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001858 dpx.television.video_signal=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001859 offset+=WriteBlobByte(image,dpx.television.video_signal);
1860 dpx.television.padding=0;
cristy96cf0ac2014-02-25 12:28:17 +00001861 value=GetImageArtifact(image,"dpx:television.padding");
cristy3ed852e2009-09-05 21:47:34 +00001862 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001863 dpx.television.padding=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001864 offset+=WriteBlobByte(image,dpx.television.padding);
1865 dpx.television.horizontal_sample_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001866 value=GetImageArtifact(image,"dpx:television.horizontal_sample_rate");
cristy3ed852e2009-09-05 21:47:34 +00001867 if (value != (const char *) NULL)
cristybccc4f42011-11-24 17:57:52 +00001868 dpx.television.horizontal_sample_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001869 offset+=WriteBlobFloat(image,dpx.television.horizontal_sample_rate);
1870 dpx.television.vertical_sample_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001871 value=GetImageArtifact(image,"dpx:television.vertical_sample_rate");
cristy3ed852e2009-09-05 21:47:34 +00001872 if (value != (const char *) NULL)
cristybccc4f42011-11-24 17:57:52 +00001873 dpx.television.vertical_sample_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001874 offset+=WriteBlobFloat(image,dpx.television.vertical_sample_rate);
1875 dpx.television.frame_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001876 value=GetImageArtifact(image,"dpx:television.frame_rate");
cristy3ed852e2009-09-05 21:47:34 +00001877 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001878 dpx.television.frame_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001879 offset+=WriteBlobFloat(image,dpx.television.frame_rate);
1880 dpx.television.time_offset=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001881 value=GetImageArtifact(image,"dpx:television.time_offset");
cristy3ed852e2009-09-05 21:47:34 +00001882 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001883 dpx.television.time_offset=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001884 offset+=WriteBlobFloat(image,dpx.television.time_offset);
1885 dpx.television.gamma=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001886 value=GetImageArtifact(image,"dpx:television.gamma");
cristy3ed852e2009-09-05 21:47:34 +00001887 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001888 dpx.television.gamma=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001889 offset+=WriteBlobFloat(image,dpx.television.gamma);
1890 dpx.television.black_level=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001891 value=GetImageArtifact(image,"dpx:television.black_level");
cristy3ed852e2009-09-05 21:47:34 +00001892 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001893 dpx.television.black_level=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001894 offset+=WriteBlobFloat(image,dpx.television.black_level);
1895 dpx.television.black_gain=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001896 value=GetImageArtifact(image,"dpx:television.black_gain");
cristy3ed852e2009-09-05 21:47:34 +00001897 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001898 dpx.television.black_gain=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001899 offset+=WriteBlobFloat(image,dpx.television.black_gain);
1900 dpx.television.break_point=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001901 value=GetImageArtifact(image,"dpx:television.break_point");
cristy3ed852e2009-09-05 21:47:34 +00001902 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001903 dpx.television.break_point=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001904 offset+=WriteBlobFloat(image,dpx.television.break_point);
1905 dpx.television.white_level=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001906 value=GetImageArtifact(image,"dpx:television.white_level");
cristy3ed852e2009-09-05 21:47:34 +00001907 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001908 dpx.television.white_level=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001909 offset+=WriteBlobFloat(image,dpx.television.white_level);
1910 dpx.television.integration_times=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001911 value=GetImageArtifact(image,"dpx:television.integration_times");
cristy3ed852e2009-09-05 21:47:34 +00001912 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001913 dpx.television.integration_times=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001914 offset+=WriteBlobFloat(image,dpx.television.integration_times);
1915 offset+=WriteBlob(image,sizeof(dpx.television.reserve),(unsigned char *)
1916 dpx.television.reserve);
1917 /*
1918 Write user header.
1919 */
cristy96cf0ac2014-02-25 12:28:17 +00001920 value=GetImageArtifact(image,"dpx:user.id");
cristy3ed852e2009-09-05 21:47:34 +00001921 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001922 (void) strncpy(dpx.user.id,value,sizeof(dpx.user.id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001923 offset+=WriteBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id);
1924 if (profile != (StringInfo *) NULL)
1925 offset+=WriteBlob(image,GetStringInfoLength(profile),
1926 GetStringInfoDatum(profile));
1927 while (offset < (MagickOffsetType) dpx.image.image_element[0].data_offset)
1928 {
1929 count=WriteBlobByte(image,0x00);
1930 if (count != 1)
1931 {
cristy1e178e72011-08-28 19:44:34 +00001932 ThrowFileException(exception,FileOpenError,"UnableToWriteFile",
cristy3ed852e2009-09-05 21:47:34 +00001933 image->filename);
1934 break;
1935 }
1936 offset+=count;
1937 }
1938 /*
1939 Convert pixel packets to DPX raster image.
1940 */
1941 quantum_info=AcquireQuantumInfo(image_info,image);
cristy891dc792010-03-04 01:47:16 +00001942 SetQuantumQuantum(quantum_info,32);
1943 SetQuantumPack(quantum_info,dpx.image.image_element[0].packing == 0 ?
1944 MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00001945 quantum_type=RGBQuantum;
cristy35553db2014-11-23 15:43:29 +00001946 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001947 quantum_type=RGBAQuantum;
1948 if (image->colorspace == YCbCrColorspace)
1949 {
1950 quantum_type=CbYCrQuantum;
cristy35553db2014-11-23 15:43:29 +00001951 if (image->alpha_trait == BlendPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001952 quantum_type=CbYCrAQuantum;
1953 if ((horizontal_factor == 2) || (vertical_factor == 2))
1954 quantum_type=CbYCrYQuantum;
1955 }
cristy35553db2014-11-23 15:43:29 +00001956 extent=GetBytesPerRow(image->columns,image->alpha_trait == BlendPixelTrait ?
cristy3b232222012-11-05 16:55:17 +00001957 4UL : 3UL,image->depth,MagickTrue);
1958 if ((image_info->type != TrueColorType) &&
cristy35553db2014-11-23 15:43:29 +00001959 (image->alpha_trait != BlendPixelTrait) &&
cristy1e178e72011-08-28 19:44:34 +00001960 (IsImageGray(image,exception) != MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00001961 {
1962 quantum_type=GrayQuantum;
cristycaac2942009-10-01 13:36:18 +00001963 extent=GetBytesPerRow(image->columns,1UL,image->depth,MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +00001964 }
1965 pixels=GetQuantumPixels(quantum_info);
cristybb503372010-05-27 20:51:26 +00001966 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001967 {
cristy1e178e72011-08-28 19:44:34 +00001968 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001969 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001970 break;
cristy4c08aed2011-07-01 19:47:50 +00001971 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
cristy1e178e72011-08-28 19:44:34 +00001972 quantum_type,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001973 count=WriteBlob(image,extent,pixels);
1974 if (count != (ssize_t) extent)
1975 break;
cristycee97112010-05-28 00:44:52 +00001976 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy202de442011-04-24 18:19:07 +00001977 image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001978 if (status == MagickFalse)
1979 break;
1980 }
1981 quantum_info=DestroyQuantumInfo(quantum_info);
1982 (void) CloseBlob(image);
1983 return(status);
1984}