blob: dbf8acccb5eb0860c908d1522ee597b84126aec1 [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% %
cristyb56bb242014-11-25 17:12:48 +000020% Copyright 1999-2015 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/*
cristy1f7ae7f2014-11-28 14:26:15 +000070 Define declaration.
71*/
72#define MaxNumberImageElements 8
73
74/*
cristy3ed852e2009-09-05 21:47:34 +000075 Typedef declaration.
76*/
77typedef enum
78{
79 UserDefinedColorimetric = 0,
80 PrintingDensityColorimetric = 1,
81 LinearColorimetric = 2,
82 LogarithmicColorimetric = 3,
83 UnspecifiedVideoColorimetric = 4,
84 SMTPE_274MColorimetric = 5,
85 ITU_R709Colorimetric = 6,
86 ITU_R601_625LColorimetric = 7,
87 ITU_R601_525LColorimetric = 8,
88 NTSCCompositeVideoColorimetric = 9,
89 PALCompositeVideoColorimetric = 10,
90 ZDepthLinearColorimetric = 11,
91 DepthHomogeneousColorimetric = 12
92} DPXColorimetric;
93
94typedef enum
95{
96 UndefinedComponentType = 0,
97 RedComponentType = 1,
98 GreenComponentType = 2,
99 BlueComponentType = 3,
100 AlphaComponentType = 4,
101 LumaComponentType = 6,
102 ColorDifferenceCbCrComponentType = 7,
103 DepthComponentType = 8,
104 CompositeVideoComponentType = 9,
105 RGBComponentType = 50,
106 RGBAComponentType = 51,
107 ABGRComponentType = 52,
108 CbYCrY422ComponentType = 100,
109 CbYACrYA4224ComponentType = 101,
110 CbYCr444ComponentType = 102,
111 CbYCrA4444ComponentType = 103,
112 UserDef2ElementComponentType = 150,
113 UserDef3ElementComponentType = 151,
114 UserDef4ElementComponentType = 152,
115 UserDef5ElementComponentType = 153,
116 UserDef6ElementComponentType = 154,
117 UserDef7ElementComponentType = 155,
118 UserDef8ElementComponentType = 156
119} DPXComponentType;
120
cristyc7f92ea2013-01-10 19:59:00 +0000121typedef enum
122{
123 TransferCharacteristicUserDefined = 0,
124 TransferCharacteristicPrintingDensity = 1,
125 TransferCharacteristicLinear = 2,
126 TransferCharacteristicLogarithmic = 3,
127 TransferCharacteristicUnspecifiedVideo = 4,
128 TransferCharacteristicSMTPE274M = 5, /* 1920x1080 TV */
129 TransferCharacteristicITU_R709 = 6, /* ITU R709 */
130 TransferCharacteristicITU_R601_625L = 7, /* 625 Line */
131 TransferCharacteristicITU_R601_525L = 8, /* 525 Line */
132 TransferCharacteristicNTSCCompositeVideo = 9,
133 TransferCharacteristicPALCompositeVideo = 10,
134 TransferCharacteristicZDepthLinear = 11,
135 TransferCharacteristicZDepthHomogeneous = 12
136} DPXTransferCharacteristic;
137
cristy3ed852e2009-09-05 21:47:34 +0000138typedef struct _DPXFileInfo
139{
140 unsigned int
141 magic,
142 image_offset;
143
144 char
145 version[8];
146
147 unsigned int
148 file_size,
149 ditto_key,
150 generic_size,
151 industry_size,
152 user_size;
153
154 char
155 filename[100],
156 timestamp[24],
157 creator[100],
158 project[200],
159 copyright[200];
160
161 unsigned int
162 encrypt_key;
163
164 char
165 reserve[104];
166} DPXFileInfo;
167
168typedef struct _DPXFilmInfo
169{
170 char
171 id[2],
172 type[2],
173 offset[2],
174 prefix[6],
175 count[4],
176 format[32];
177
178 unsigned int
179 frame_position,
180 sequence_extent,
181 held_count;
182
183 float
184 frame_rate,
185 shutter_angle;
186
187 char
188 frame_id[32],
189 slate[100],
190 reserve[56];
191} DPXFilmInfo;
192
193typedef struct _DPXImageElement
194{
195 unsigned int
196 data_sign,
197 low_data;
198
199 float
200 low_quantity;
201
202 unsigned int
203 high_data;
204
205 float
206 high_quantity;
207
208 unsigned char
209 descriptor,
cristyc7f92ea2013-01-10 19:59:00 +0000210 transfer_characteristic,
cristy3ed852e2009-09-05 21:47:34 +0000211 colorimetric,
212 bit_size;
213
214 unsigned short
215 packing,
216 encoding;
217
218 unsigned int
219 data_offset,
220 end_of_line_padding,
221 end_of_image_padding;
222
223 unsigned char
224 description[32];
225} DPXImageElement;
226
227typedef struct _DPXImageInfo
228{
229 unsigned short
230 orientation,
231 number_elements;
232
233 unsigned int
234 pixels_per_line,
235 lines_per_element;
236
237 DPXImageElement
cristy1f7ae7f2014-11-28 14:26:15 +0000238 image_element[MaxNumberImageElements];
cristy3ed852e2009-09-05 21:47:34 +0000239
240 unsigned char
241 reserve[52];
242} DPXImageInfo;
243
244typedef struct _DPXOrientationInfo
245{
246 unsigned int
247 x_offset,
248 y_offset;
249
250 float
251 x_center,
252 y_center;
253
254 unsigned int
255 x_size,
256 y_size;
257
258 char
259 filename[100],
260 timestamp[24],
261 device[32],
262 serial[32];
263
264 unsigned short
265 border[4];
266
267 unsigned int
268 aspect_ratio[2];
269
270 unsigned char
271 reserve[28];
272} DPXOrientationInfo;
273
274typedef struct _DPXTelevisionInfo
275{
276 unsigned int
277 time_code,
278 user_bits;
279
280 unsigned char
281 interlace,
282 field_number,
283 video_signal,
284 padding;
285
286 float
287 horizontal_sample_rate,
288 vertical_sample_rate,
289 frame_rate,
290 time_offset,
291 gamma,
292 black_level,
293 black_gain,
294 break_point,
295 white_level,
296 integration_times;
297
298 char
299 reserve[76];
300} DPXTelevisionInfo;
301
302typedef struct _DPXUserInfo
303{
304 char
305 id[32];
306} DPXUserInfo;
307
308typedef struct DPXInfo
309{
310 DPXFileInfo
311 file;
312
313 DPXImageInfo
314 image;
315
316 DPXOrientationInfo
317 orientation;
318
319 DPXFilmInfo
320 film;
321
322 DPXTelevisionInfo
323 television;
324
325 DPXUserInfo
326 user;
327} DPXInfo;
328
329/*
330 Forward declaractions.
331*/
332static MagickBooleanType
cristy1e178e72011-08-28 19:44:34 +0000333 WriteDPXImage(const ImageInfo *,Image *,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +0000334
335/*
336%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
337% %
338% %
339% %
340% I s D P X %
341% %
342% %
343% %
344%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
345%
346% IsDPX() returns MagickTrue if the image format type, identified by the
347% magick string, is DPX.
348%
349% The format of the IsDPX method is:
350%
351% MagickBooleanType IsDPX(const unsigned char *magick,const size_t extent)
352%
353% A description of each parameter follows:
354%
355% o magick: compare image format pattern against these bytes.
356%
357% o extent: Specifies the extent of the magick string.
358%
359*/
360static MagickBooleanType IsDPX(const unsigned char *magick,const size_t extent)
361{
362 if (extent < 4)
363 return(MagickFalse);
364 if (memcmp(magick,"SDPX",4) == 0)
365 return(MagickTrue);
366 if (memcmp(magick,"XPDS",4) == 0)
367 return(MagickTrue);
368 return(MagickFalse);
369}
370
371/*
372%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
373% %
374% %
375% %
376% R e a d D P X I m a g e %
377% %
378% %
379% %
380%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
381%
382% ReadDPXImage() reads an DPX X image file and returns it. It
383% allocates the memory necessary for the new Image structure and returns a
384% pointer to the new image.
385%
386% The format of the ReadDPXImage method is:
387%
388% Image *ReadDPXImage(const ImageInfo *image_info,ExceptionInfo *exception)
389%
390% A description of each parameter follows:
391%
392% o image_info: the image info.
393%
394% o exception: return any errors or warnings in this structure.
395%
396*/
397
cristy4ccdaa22012-11-05 16:58:06 +0000398static size_t GetBytesPerRow(const size_t columns,
399 const size_t samples_per_pixel,const size_t bits_per_pixel,
400 const MagickBooleanType pad)
cristy3ed852e2009-09-05 21:47:34 +0000401{
402 size_t
403 bytes_per_row;
404
405 switch (bits_per_pixel)
406 {
407 case 1:
408 {
cristy4ccdaa22012-11-05 16:58:06 +0000409 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
410 32);
cristy3ed852e2009-09-05 21:47:34 +0000411 break;
412 }
413 case 8:
414 default:
415 {
cristy4ccdaa22012-11-05 16:58:06 +0000416 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
417 32);
cristy3ed852e2009-09-05 21:47:34 +0000418 break;
419 }
420 case 10:
421 {
422 if (pad == MagickFalse)
423 {
cristy4ccdaa22012-11-05 16:58:06 +0000424 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+
425 31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000426 break;
427 }
cristyff024b42010-02-21 22:55:09 +0000428 bytes_per_row=4*(((size_t) (32*((samples_per_pixel*columns+2)/3))+31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000429 break;
430 }
431 case 12:
432 {
433 if (pad == MagickFalse)
434 {
cristy4ccdaa22012-11-05 16:58:06 +0000435 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+
436 31)/32);
cristy3ed852e2009-09-05 21:47:34 +0000437 break;
438 }
439 bytes_per_row=2*(((size_t) (16*samples_per_pixel*columns)+15)/16);
440 break;
441 }
442 case 16:
443 {
cristy4ccdaa22012-11-05 16:58:06 +0000444 bytes_per_row=2*(((size_t) samples_per_pixel*columns*bits_per_pixel+8)/
445 16);
cristy3ed852e2009-09-05 21:47:34 +0000446 break;
447 }
448 case 32:
449 {
cristy4ccdaa22012-11-05 16:58:06 +0000450 bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/
451 32);
cristy3ed852e2009-09-05 21:47:34 +0000452 break;
453 }
454 case 64:
455 {
cristy4ccdaa22012-11-05 16:58:06 +0000456 bytes_per_row=8*(((size_t) samples_per_pixel*columns*bits_per_pixel+63)/
457 64);
cristy3ed852e2009-09-05 21:47:34 +0000458 break;
459 }
460 }
461 return(bytes_per_row);
462}
463
cristyc7f92ea2013-01-10 19:59:00 +0000464static const char *GetImageTransferCharacteristic(
465 const DPXTransferCharacteristic characteristic)
466{
467 const char
468 *transfer;
469
470 /*
471 Get the element transfer characteristic.
472 */
473 switch(characteristic)
474 {
475 case TransferCharacteristicUserDefined:
476 {
477 transfer="UserDefined";
478 break;
479 }
480 case TransferCharacteristicPrintingDensity:
481 {
482 transfer="PrintingDensity";
483 break;
484 }
485 case TransferCharacteristicLinear:
486 {
487 transfer="Linear";
488 break;
489 }
490 case TransferCharacteristicLogarithmic:
491 {
492 transfer="Logarithmic";
493 break;
494 }
495 case TransferCharacteristicUnspecifiedVideo:
496 {
497 transfer="UnspecifiedVideo";
498 break;
499 }
500 case TransferCharacteristicSMTPE274M:
501 {
502 transfer="SMTPE274M";
503 break;
504 }
505 case TransferCharacteristicITU_R709:
506 {
507 transfer="ITU-R709";
508 break;
509 }
510 case TransferCharacteristicITU_R601_625L:
511 {
512 transfer="ITU-R601-625L";
513 break;
514 }
515 case TransferCharacteristicITU_R601_525L:
516 {
517 transfer="ITU-R601-525L";
518 break;
519 }
520 case TransferCharacteristicNTSCCompositeVideo:
521 {
522 transfer="NTSCCompositeVideo";
523 break;
524 }
525 case TransferCharacteristicPALCompositeVideo:
526 {
527 transfer="PALCompositeVideo";
528 break;
529 }
530 case TransferCharacteristicZDepthLinear:
531 {
532 transfer="ZDepthLinear";
533 break;
534 }
535 case TransferCharacteristicZDepthHomogeneous:
536 {
537 transfer="ZDepthHomogeneous";
538 break;
539 }
540 default:
541 transfer="Reserved";
542 }
543 return(transfer);
544}
545
cristy3ed852e2009-09-05 21:47:34 +0000546static inline MagickBooleanType IsFloatDefined(const float value)
547{
548 union
549 {
550 unsigned int
551 unsigned_value;
552
cristy8a8e4682013-09-26 12:55:39 +0000553 float
cristy3ed852e2009-09-05 21:47:34 +0000554 float_value;
555 } quantum;
556
557 quantum.unsigned_value=0U;
cristy8a8e4682013-09-26 12:55:39 +0000558 quantum.float_value=(float) value;
cristy3ed852e2009-09-05 21:47:34 +0000559 if (quantum.unsigned_value == 0U)
560 return(MagickFalse);
561 return(MagickTrue);
562}
563
564static void SetPrimaryChromaticity(const DPXColorimetric colorimetric,
565 ChromaticityInfo *chromaticity_info)
566{
567 switch(colorimetric)
568 {
569 case SMTPE_274MColorimetric:
570 case ITU_R709Colorimetric:
571 {
572 chromaticity_info->red_primary.x=0.640;
573 chromaticity_info->red_primary.y=0.330;
574 chromaticity_info->red_primary.z=0.030;
575 chromaticity_info->green_primary.x=0.300;
576 chromaticity_info->green_primary.y=0.600;
577 chromaticity_info->green_primary.z=0.100;
578 chromaticity_info->blue_primary.x=0.150;
579 chromaticity_info->blue_primary.y=0.060;
580 chromaticity_info->blue_primary.z=0.790;
581 chromaticity_info->white_point.x=0.3127;
582 chromaticity_info->white_point.y=0.3290;
583 chromaticity_info->white_point.z=0.3582;
584 break;
585 }
586 case NTSCCompositeVideoColorimetric:
587 {
588 chromaticity_info->red_primary.x=0.67;
589 chromaticity_info->red_primary.y=0.33;
590 chromaticity_info->red_primary.z=0.00;
591 chromaticity_info->green_primary.x=0.21;
592 chromaticity_info->green_primary.y=0.71;
593 chromaticity_info->green_primary.z=0.08;
594 chromaticity_info->blue_primary.x=0.14;
595 chromaticity_info->blue_primary.y=0.08;
596 chromaticity_info->blue_primary.z=0.78;
597 chromaticity_info->white_point.x=0.310;
598 chromaticity_info->white_point.y=0.316;
599 chromaticity_info->white_point.z=0.374;
600 break;
601 }
602 case PALCompositeVideoColorimetric:
603 {
604 chromaticity_info->red_primary.x=0.640;
605 chromaticity_info->red_primary.y=0.330;
606 chromaticity_info->red_primary.z=0.030;
607 chromaticity_info->green_primary.x=0.290;
608 chromaticity_info->green_primary.y=0.600;
609 chromaticity_info->green_primary.z=0.110;
610 chromaticity_info->blue_primary.x=0.150;
611 chromaticity_info->blue_primary.y=0.060;
612 chromaticity_info->blue_primary.z=0.790;
613 chromaticity_info->white_point.x=0.3127;
614 chromaticity_info->white_point.y=0.3290;
615 chromaticity_info->white_point.z=0.3582;
616 break;
617 }
618 default:
619 break;
620 }
621}
622
cristybb503372010-05-27 20:51:26 +0000623static void TimeCodeToString(const size_t timestamp,char *code)
cristy3ed852e2009-09-05 21:47:34 +0000624{
625#define TimeFields 7
626
627 unsigned int
628 shift;
629
cristybb503372010-05-27 20:51:26 +0000630 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000631 i;
632
633 *code='\0';
634 shift=4*TimeFields;
635 for (i=0; i <= TimeFields; i++)
636 {
cristyb51dff52011-05-19 16:55:47 +0000637 (void) FormatLocaleString(code,MaxTextExtent-strlen(code),"%x",
cristy3ed852e2009-09-05 21:47:34 +0000638 (unsigned int) ((timestamp >> shift) & 0x0fU));
639 code++;
640 if (((i % 2) != 0) && (i < TimeFields))
641 *code++=':';
642 shift-=4;
643 *code='\0';
644 }
645}
646
647static Image *ReadDPXImage(const ImageInfo *image_info,ExceptionInfo *exception)
648{
649 char
650 magick[4],
651 value[MaxTextExtent];
652
653 DPXInfo
654 dpx;
655
656 Image
657 *image;
658
cristy3ed852e2009-09-05 21:47:34 +0000659 MagickBooleanType
660 status;
661
662 MagickOffsetType
663 offset;
664
cristyff024b42010-02-21 22:55:09 +0000665 QuantumInfo
666 *quantum_info;
667
cristy3ed852e2009-09-05 21:47:34 +0000668 QuantumType
669 quantum_type;
670
cristybb503372010-05-27 20:51:26 +0000671 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000672 i;
673
cristy3ed852e2009-09-05 21:47:34 +0000674 size_t
cristy202de442011-04-24 18:19:07 +0000675 extent,
676 samples_per_pixel;
677
678 ssize_t
679 count,
cristy04ea8a02012-09-30 15:23:28 +0000680 n,
cristy202de442011-04-24 18:19:07 +0000681 row,
682 y;
cristy3ed852e2009-09-05 21:47:34 +0000683
684 unsigned char
685 component_type;
686
cristy3ed852e2009-09-05 21:47:34 +0000687 /*
688 Open image file.
689 */
690 assert(image_info != (const ImageInfo *) NULL);
691 assert(image_info->signature == MagickSignature);
692 if (image_info->debug != MagickFalse)
693 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
694 image_info->filename);
695 assert(exception != (ExceptionInfo *) NULL);
696 assert(exception->signature == MagickSignature);
cristy9950d572011-10-01 18:22:35 +0000697 image=AcquireImage(image_info,exception);
cristy3ed852e2009-09-05 21:47:34 +0000698 status=OpenBlob(image_info,image,ReadBinaryBlobMode,exception);
699 if (status == MagickFalse)
700 {
701 image=DestroyImageList(image);
702 return((Image *) NULL);
703 }
704 /*
705 Read DPX file header.
706 */
707 offset=0;
708 count=ReadBlob(image,4,(unsigned char *) magick);
709 offset+=count;
710 if ((count != 4) || ((LocaleNCompare(magick,"SDPX",4) != 0) &&
711 (LocaleNCompare((char *) magick,"XPDS",4) != 0)))
712 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
713 image->endian=LSBEndian;
714 if (LocaleNCompare(magick,"SDPX",4) == 0)
715 image->endian=MSBEndian;
716 (void) ResetMagickMemory(&dpx,0,sizeof(dpx));
717 dpx.file.image_offset=ReadBlobLong(image);
718 offset+=4;
719 offset+=ReadBlob(image,sizeof(dpx.file.version),(unsigned char *)
720 dpx.file.version);
721 (void) FormatImageProperty(image,"dpx:file.version","%.8s",dpx.file.version);
722 dpx.file.file_size=ReadBlobLong(image);
723 offset+=4;
724 dpx.file.ditto_key=ReadBlobLong(image);
725 offset+=4;
cristya230a612014-01-05 20:51:47 +0000726 if (dpx.file.ditto_key != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000727 (void) FormatImageProperty(image,"dpx:file.ditto.key","%u",
728 dpx.file.ditto_key);
729 dpx.file.generic_size=ReadBlobLong(image);
730 offset+=4;
731 dpx.file.industry_size=ReadBlobLong(image);
732 offset+=4;
733 dpx.file.user_size=ReadBlobLong(image);
734 offset+=4;
735 offset+=ReadBlob(image,sizeof(dpx.file.filename),(unsigned char *)
736 dpx.file.filename);
737 (void) FormatImageProperty(image,"dpx:file.filename","%.100s",
738 dpx.file.filename);
739 (void) FormatImageProperty(image,"document","%.100s",dpx.file.filename);
740 offset+=ReadBlob(image,sizeof(dpx.file.timestamp),(unsigned char *)
741 dpx.file.timestamp);
742 if (*dpx.file.timestamp != '\0')
743 (void) FormatImageProperty(image,"dpx:file.timestamp","%.24s",
744 dpx.file.timestamp);
745 offset+=ReadBlob(image,sizeof(dpx.file.creator),(unsigned char *)
746 dpx.file.creator);
747 if (*dpx.file.creator != '\0')
748 {
749 (void) FormatImageProperty(image,"dpx:file.creator","%.100s",
750 dpx.file.creator);
751 (void) FormatImageProperty(image,"software","%.100s",dpx.file.creator);
752 }
753 offset+=ReadBlob(image,sizeof(dpx.file.project),(unsigned char *)
754 dpx.file.project);
755 if (*dpx.file.project != '\0')
756 {
757 (void) FormatImageProperty(image,"dpx:file.project","%.200s",
758 dpx.file.project);
759 (void) FormatImageProperty(image,"comment","%.100s",dpx.file.project);
760 }
761 offset+=ReadBlob(image,sizeof(dpx.file.copyright),(unsigned char *)
762 dpx.file.copyright);
763 if (*dpx.file.copyright != '\0')
764 {
765 (void) FormatImageProperty(image,"dpx:file.copyright","%.200s",
766 dpx.file.copyright);
767 (void) FormatImageProperty(image,"copyright","%.100s",
768 dpx.file.copyright);
769 }
770 dpx.file.encrypt_key=ReadBlobLong(image);
771 offset+=4;
cristya230a612014-01-05 20:51:47 +0000772 if (dpx.file.encrypt_key != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000773 (void) FormatImageProperty(image,"dpx:file.encrypt_key","%u",
774 dpx.file.encrypt_key);
775 offset+=ReadBlob(image,sizeof(dpx.file.reserve),(unsigned char *)
776 dpx.file.reserve);
777 /*
778 Read DPX image header.
779 */
780 dpx.image.orientation=ReadBlobShort(image);
cristy1f7ae7f2014-11-28 14:26:15 +0000781 if (dpx.image.orientation > 7)
782 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy3ed852e2009-09-05 21:47:34 +0000783 offset+=2;
cristy6310e8d2013-11-11 12:52:08 +0000784 if (dpx.image.orientation != (unsigned short) ~0)
cristy3ed852e2009-09-05 21:47:34 +0000785 (void) FormatImageProperty(image,"dpx:image.orientation","%d",
786 dpx.image.orientation);
787 switch (dpx.image.orientation)
788 {
789 default:
cristy202de442011-04-24 18:19:07 +0000790 case 0: image->orientation=TopLeftOrientation; break;
791 case 1: image->orientation=TopRightOrientation; break;
792 case 2: image->orientation=BottomLeftOrientation; break;
793 case 3: image->orientation=BottomRightOrientation; break;
794 case 4: image->orientation=LeftTopOrientation; break;
795 case 5: image->orientation=RightTopOrientation; break;
796 case 6: image->orientation=LeftBottomOrientation; break;
797 case 7: image->orientation=RightBottomOrientation; break;
cristy3ed852e2009-09-05 21:47:34 +0000798 }
799 dpx.image.number_elements=ReadBlobShort(image);
cristy1f7ae7f2014-11-28 14:26:15 +0000800 if (dpx.image.number_elements > MaxNumberImageElements)
cristy7d3fc132014-11-23 16:36:24 +0000801 ThrowReaderException(CorruptImageError,"ImproperImageHeader");
cristy3ed852e2009-09-05 21:47:34 +0000802 offset+=2;
803 dpx.image.pixels_per_line=ReadBlobLong(image);
804 offset+=4;
805 image->columns=dpx.image.pixels_per_line;
806 dpx.image.lines_per_element=ReadBlobLong(image);
807 offset+=4;
808 image->rows=dpx.image.lines_per_element;
809 for (i=0; i < 8; i++)
810 {
cristyc7f92ea2013-01-10 19:59:00 +0000811 char
812 property[MaxTextExtent];
813
cristy3ed852e2009-09-05 21:47:34 +0000814 dpx.image.image_element[i].data_sign=ReadBlobLong(image);
815 offset+=4;
816 dpx.image.image_element[i].low_data=ReadBlobLong(image);
817 offset+=4;
818 dpx.image.image_element[i].low_quantity=ReadBlobFloat(image);
819 offset+=4;
820 dpx.image.image_element[i].high_data=ReadBlobLong(image);
821 offset+=4;
822 dpx.image.image_element[i].high_quantity=ReadBlobFloat(image);
823 offset+=4;
824 dpx.image.image_element[i].descriptor=(unsigned char) ReadBlobByte(image);
825 offset++;
cristyc7f92ea2013-01-10 19:59:00 +0000826 dpx.image.image_element[i].transfer_characteristic=(unsigned char)
827 ReadBlobByte(image);
828 (void) FormatLocaleString(property,MaxTextExtent,
829 "dpx:image.element[%lu].transfer-characteristic",(long) i);
830 (void) FormatImageProperty(image,property,"%s",
831 GetImageTransferCharacteristic((DPXTransferCharacteristic)
832 dpx.image.image_element[i].transfer_characteristic));
cristy3ed852e2009-09-05 21:47:34 +0000833 offset++;
834 dpx.image.image_element[i].colorimetric=(unsigned char) ReadBlobByte(image);
835 offset++;
836 dpx.image.image_element[i].bit_size=(unsigned char) ReadBlobByte(image);
837 offset++;
838 dpx.image.image_element[i].packing=ReadBlobShort(image);
839 offset+=2;
840 dpx.image.image_element[i].encoding=ReadBlobShort(image);
841 offset+=2;
842 dpx.image.image_element[i].data_offset=ReadBlobLong(image);
843 offset+=4;
844 dpx.image.image_element[i].end_of_line_padding=ReadBlobLong(image);
845 offset+=4;
846 dpx.image.image_element[i].end_of_image_padding=ReadBlobLong(image);
847 offset+=4;
848 offset+=ReadBlob(image,sizeof(dpx.image.image_element[i].description),
849 (unsigned char *) dpx.image.image_element[i].description);
850 }
cristyb2c3f402012-05-13 18:05:12 +0000851 SetImageColorspace(image,RGBColorspace,exception);
cristy3ed852e2009-09-05 21:47:34 +0000852 offset+=ReadBlob(image,sizeof(dpx.image.reserve),(unsigned char *)
853 dpx.image.reserve);
cristy3ed852e2009-09-05 21:47:34 +0000854 if (dpx.file.image_offset >= 1664U)
855 {
856 /*
857 Read DPX orientation header.
858 */
859 dpx.orientation.x_offset=ReadBlobLong(image);
860 offset+=4;
cristya230a612014-01-05 20:51:47 +0000861 if (dpx.orientation.x_offset != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000862 (void) FormatImageProperty(image,"dpx:orientation.x_offset","%u",
863 dpx.orientation.x_offset);
864 dpx.orientation.y_offset=ReadBlobLong(image);
865 offset+=4;
cristya230a612014-01-05 20:51:47 +0000866 if (dpx.orientation.y_offset != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000867 (void) FormatImageProperty(image,"dpx:orientation.y_offset","%u",
868 dpx.orientation.y_offset);
869 dpx.orientation.x_center=ReadBlobFloat(image);
870 offset+=4;
871 if (IsFloatDefined(dpx.orientation.x_center) != MagickFalse)
872 (void) FormatImageProperty(image,"dpx:orientation.x_center","%g",
873 dpx.orientation.x_center);
874 dpx.orientation.y_center=ReadBlobFloat(image);
875 offset+=4;
876 if (IsFloatDefined(dpx.orientation.y_center) != MagickFalse)
877 (void) FormatImageProperty(image,"dpx:orientation.y_center","%g",
878 dpx.orientation.y_center);
879 dpx.orientation.x_size=ReadBlobLong(image);
880 offset+=4;
cristya230a612014-01-05 20:51:47 +0000881 if (dpx.orientation.x_size != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000882 (void) FormatImageProperty(image,"dpx:orientation.x_size","%u",
883 dpx.orientation.x_size);
884 dpx.orientation.y_size=ReadBlobLong(image);
885 offset+=4;
cristya230a612014-01-05 20:51:47 +0000886 if (dpx.orientation.y_size != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000887 (void) FormatImageProperty(image,"dpx:orientation.y_size","%u",
888 dpx.orientation.y_size);
889 offset+=ReadBlob(image,sizeof(dpx.orientation.filename),(unsigned char *)
890 dpx.orientation.filename);
891 if (*dpx.orientation.filename != '\0')
892 (void) FormatImageProperty(image,"dpx:orientation.filename","%.100s",
893 dpx.orientation.filename);
894 offset+=ReadBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *)
895 dpx.orientation.timestamp);
896 if (*dpx.orientation.timestamp != '\0')
897 (void) FormatImageProperty(image,"dpx:orientation.timestamp","%.24s",
898 dpx.orientation.timestamp);
899 offset+=ReadBlob(image,sizeof(dpx.orientation.device),(unsigned char *)
900 dpx.orientation.device);
901 if (*dpx.orientation.device != '\0')
902 (void) FormatImageProperty(image,"dpx:orientation.device","%.32s",
903 dpx.orientation.device);
904 offset+=ReadBlob(image,sizeof(dpx.orientation.serial),(unsigned char *)
905 dpx.orientation.serial);
906 if (*dpx.orientation.serial != '\0')
907 (void) FormatImageProperty(image,"dpx:orientation.serial","%.32s",
908 dpx.orientation.serial);
909 for (i=0; i < 4; i++)
910 {
911 dpx.orientation.border[i]=ReadBlobShort(image);
912 offset+=2;
913 }
dirk93b02b72013-11-16 16:03:36 +0000914 if ((dpx.orientation.border[0] != (unsigned short) (~0)) &&
915 (dpx.orientation.border[1] != (unsigned short) (~0)))
916 (void) FormatImageProperty(image,"dpx:orientation.border","%dx%d%+d%+d",
917 dpx.orientation.border[0],dpx.orientation.border[1],
cristy3ed852e2009-09-05 21:47:34 +0000918 dpx.orientation.border[2],dpx.orientation.border[3]);
919 for (i=0; i < 2; i++)
920 {
921 dpx.orientation.aspect_ratio[i]=ReadBlobLong(image);
922 offset+=4;
923 }
cristya230a612014-01-05 20:51:47 +0000924 if ((dpx.orientation.aspect_ratio[0] != ~0U) &&
925 (dpx.orientation.aspect_ratio[1] != ~0U))
cristy3ed852e2009-09-05 21:47:34 +0000926 (void) FormatImageProperty(image,"dpx:orientation.aspect_ratio",
927 "%ux%u",dpx.orientation.aspect_ratio[0],
928 dpx.orientation.aspect_ratio[1]);
929 offset+=ReadBlob(image,sizeof(dpx.orientation.reserve),(unsigned char *)
930 dpx.orientation.reserve);
931 }
932 if (dpx.file.image_offset >= 1920U)
933 {
934 /*
935 Read DPX film header.
936 */
937 offset+=ReadBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id);
cristy4d0ca342014-05-01 00:42:09 +0000938 if (*dpx.film.id != '\0')
cristy3ed852e2009-09-05 21:47:34 +0000939 (void) FormatImageProperty(image,"dpx:film.id","%.2s",dpx.film.id);
940 offset+=ReadBlob(image,sizeof(dpx.film.type),(unsigned char *)
941 dpx.film.type);
942 if (*dpx.film.type != '\0')
943 (void) FormatImageProperty(image,"dpx:film.type","%.2s",dpx.film.type);
944 offset+=ReadBlob(image,sizeof(dpx.film.offset),(unsigned char *)
945 dpx.film.offset);
946 if (*dpx.film.offset != '\0')
947 (void) FormatImageProperty(image,"dpx:film.offset","%.2s",
948 dpx.film.offset);
949 offset+=ReadBlob(image,sizeof(dpx.film.prefix),(unsigned char *)
950 dpx.film.prefix);
951 if (*dpx.film.prefix != '\0')
952 (void) FormatImageProperty(image,"dpx:film.prefix","%.6s",
953 dpx.film.prefix);
954 offset+=ReadBlob(image,sizeof(dpx.film.count),(unsigned char *)
955 dpx.film.count);
956 if (*dpx.film.count != '\0')
957 (void) FormatImageProperty(image,"dpx:film.count","%.4s",
958 dpx.film.count);
959 offset+=ReadBlob(image,sizeof(dpx.film.format),(unsigned char *)
960 dpx.film.format);
961 if (*dpx.film.format != '\0')
962 (void) FormatImageProperty(image,"dpx:film.format","%.4s",
963 dpx.film.format);
964 dpx.film.frame_position=ReadBlobLong(image);
965 offset+=4;
cristya230a612014-01-05 20:51:47 +0000966 if (dpx.film.frame_position != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000967 (void) FormatImageProperty(image,"dpx:film.frame_position","%u",
968 dpx.film.frame_position);
969 dpx.film.sequence_extent=ReadBlobLong(image);
970 offset+=4;
cristya230a612014-01-05 20:51:47 +0000971 if (dpx.film.sequence_extent != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000972 (void) FormatImageProperty(image,"dpx:film.sequence_extent","%u",
973 dpx.film.sequence_extent);
974 dpx.film.held_count=ReadBlobLong(image);
975 offset+=4;
cristya230a612014-01-05 20:51:47 +0000976 if (dpx.film.held_count != ~0U)
cristy3ed852e2009-09-05 21:47:34 +0000977 (void) FormatImageProperty(image,"dpx:film.held_count","%u",
978 dpx.film.held_count);
979 dpx.film.frame_rate=ReadBlobFloat(image);
980 offset+=4;
981 if (IsFloatDefined(dpx.film.frame_rate) != MagickFalse)
982 (void) FormatImageProperty(image,"dpx:film.frame_rate","%g",
983 dpx.film.frame_rate);
984 dpx.film.shutter_angle=ReadBlobFloat(image);
985 offset+=4;
986 if (IsFloatDefined(dpx.film.shutter_angle) != MagickFalse)
987 (void) FormatImageProperty(image,"dpx:film.shutter_angle","%g",
988 dpx.film.shutter_angle);
989 offset+=ReadBlob(image,sizeof(dpx.film.frame_id),(unsigned char *)
990 dpx.film.frame_id);
991 if (*dpx.film.frame_id != '\0')
992 (void) FormatImageProperty(image,"dpx:film.frame_id","%.32s",
993 dpx.film.frame_id);
994 offset+=ReadBlob(image,sizeof(dpx.film.slate),(unsigned char *)
995 dpx.film.slate);
996 if (*dpx.film.slate != '\0')
997 (void) FormatImageProperty(image,"dpx:film.slate","%.100s",
998 dpx.film.slate);
999 offset+=ReadBlob(image,sizeof(dpx.film.reserve),(unsigned char *)
1000 dpx.film.reserve);
1001 }
1002 if (dpx.file.image_offset >= 2048U)
1003 {
1004 /*
1005 Read DPX television header.
1006 */
1007 dpx.television.time_code=(unsigned int) ReadBlobLong(image);
1008 offset+=4;
1009 TimeCodeToString(dpx.television.time_code,value);
cristyd15e6592011-10-15 00:13:06 +00001010 (void) SetImageProperty(image,"dpx:television.time.code",value,exception);
cristy3ed852e2009-09-05 21:47:34 +00001011 dpx.television.user_bits=(unsigned int) ReadBlobLong(image);
1012 offset+=4;
1013 TimeCodeToString(dpx.television.user_bits,value);
cristyd15e6592011-10-15 00:13:06 +00001014 (void) SetImageProperty(image,"dpx:television.user.bits",value,exception);
cristy3ed852e2009-09-05 21:47:34 +00001015 dpx.television.interlace=(unsigned char) ReadBlobByte(image);
1016 offset++;
1017 if (dpx.television.interlace != 0)
cristye8c25f92010-06-03 00:53:06 +00001018 (void) FormatImageProperty(image,"dpx:television.interlace","%.20g",
1019 (double) dpx.television.interlace);
cristy3ed852e2009-09-05 21:47:34 +00001020 dpx.television.field_number=(unsigned char) ReadBlobByte(image);
1021 offset++;
1022 if (dpx.television.field_number != 0)
cristye8c25f92010-06-03 00:53:06 +00001023 (void) FormatImageProperty(image,"dpx:television.field_number","%.20g",
1024 (double) dpx.television.field_number);
cristy3ed852e2009-09-05 21:47:34 +00001025 dpx.television.video_signal=(unsigned char) ReadBlobByte(image);
1026 offset++;
1027 if (dpx.television.video_signal != 0)
cristye8c25f92010-06-03 00:53:06 +00001028 (void) FormatImageProperty(image,"dpx:television.video_signal","%.20g",
1029 (double) dpx.television.video_signal);
cristy3ed852e2009-09-05 21:47:34 +00001030 dpx.television.padding=(unsigned char) ReadBlobByte(image);
1031 offset++;
1032 if (dpx.television.padding != 0)
1033 (void) FormatImageProperty(image,"dpx:television.padding","%d",
1034 dpx.television.padding);
1035 dpx.television.horizontal_sample_rate=ReadBlobFloat(image);
1036 offset+=4;
1037 if (IsFloatDefined(dpx.television.horizontal_sample_rate) != MagickFalse)
1038 (void) FormatImageProperty(image,
1039 "dpx:television.horizontal_sample_rate","%g",
1040 dpx.television.horizontal_sample_rate);
1041 dpx.television.vertical_sample_rate=ReadBlobFloat(image);
1042 offset+=4;
1043 if (IsFloatDefined(dpx.television.vertical_sample_rate) != MagickFalse)
1044 (void) FormatImageProperty(image,"dpx:television.vertical_sample_rate",
1045 "%g",dpx.television.vertical_sample_rate);
1046 dpx.television.frame_rate=ReadBlobFloat(image);
1047 offset+=4;
1048 if (IsFloatDefined(dpx.television.frame_rate) != MagickFalse)
1049 (void) FormatImageProperty(image,"dpx:television.frame_rate","%g",
1050 dpx.television.frame_rate);
1051 dpx.television.time_offset=ReadBlobFloat(image);
1052 offset+=4;
1053 if (IsFloatDefined(dpx.television.time_offset) != MagickFalse)
1054 (void) FormatImageProperty(image,"dpx:television.time_offset","%g",
1055 dpx.television.time_offset);
1056 dpx.television.gamma=ReadBlobFloat(image);
1057 offset+=4;
1058 if (IsFloatDefined(dpx.television.gamma) != MagickFalse)
1059 (void) FormatImageProperty(image,"dpx:television.gamma","%g",
1060 dpx.television.gamma);
1061 dpx.television.black_level=ReadBlobFloat(image);
1062 offset+=4;
1063 if (IsFloatDefined(dpx.television.black_level) != MagickFalse)
1064 (void) FormatImageProperty(image,"dpx:television.black_level","%g",
1065 dpx.television.black_level);
1066 dpx.television.black_gain=ReadBlobFloat(image);
1067 offset+=4;
1068 if (IsFloatDefined(dpx.television.black_gain) != MagickFalse)
1069 (void) FormatImageProperty(image,"dpx:television.black_gain","%g",
1070 dpx.television.black_gain);
1071 dpx.television.break_point=ReadBlobFloat(image);
1072 offset+=4;
1073 if (IsFloatDefined(dpx.television.break_point) != MagickFalse)
1074 (void) FormatImageProperty(image,"dpx:television.break_point","%g",
1075 dpx.television.break_point);
1076 dpx.television.white_level=ReadBlobFloat(image);
1077 offset+=4;
1078 if (IsFloatDefined(dpx.television.white_level) != MagickFalse)
1079 (void) FormatImageProperty(image,"dpx:television.white_level","%g",
1080 dpx.television.white_level);
1081 dpx.television.integration_times=ReadBlobFloat(image);
1082 offset+=4;
1083 if (IsFloatDefined(dpx.television.integration_times) != MagickFalse)
1084 (void) FormatImageProperty(image,"dpx:television.integration_times",
1085 "%g",dpx.television.integration_times);
1086 offset+=ReadBlob(image,sizeof(dpx.television.reserve),(unsigned char *)
1087 dpx.television.reserve);
1088 }
1089 if (dpx.file.image_offset > 2080U)
1090 {
1091 /*
1092 Read DPX user header.
1093 */
1094 offset+=ReadBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id);
1095 if (*dpx.user.id != '\0')
1096 (void) FormatImageProperty(image,"dpx:user.id","%.32s",dpx.user.id);
cristya230a612014-01-05 20:51:47 +00001097 if ((dpx.file.user_size != ~0U) &&
cristy3ed852e2009-09-05 21:47:34 +00001098 ((size_t) dpx.file.user_size > sizeof(dpx.user.id)))
1099 {
1100 StringInfo
1101 *profile;
1102
cristy60395292011-09-01 13:25:56 +00001103 profile=BlobToStringInfo((const void *) NULL,
1104 dpx.file.user_size-sizeof(dpx.user.id));
1105 if (profile == (StringInfo *) NULL)
1106 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
cristy3ed852e2009-09-05 21:47:34 +00001107 offset+=ReadBlob(image,GetStringInfoLength(profile),
1108 GetStringInfoDatum(profile));
cristy96cf0ac2014-02-25 12:28:17 +00001109 (void) SetImageProfile(image,"dpx:user-data",profile,exception);
cristy3ed852e2009-09-05 21:47:34 +00001110 profile=DestroyStringInfo(profile);
1111 }
1112 }
cristy811f5172010-12-29 17:38:08 +00001113 for ( ; offset < (MagickOffsetType) dpx.file.image_offset; offset++)
cristy3ed852e2009-09-05 21:47:34 +00001114 (void) ReadBlobByte(image);
cristy3ed852e2009-09-05 21:47:34 +00001115 if (image_info->ping != MagickFalse)
1116 {
1117 (void) CloseBlob(image);
1118 return(GetFirstImageInList(image));
1119 }
cristyacabb842014-12-14 23:36:33 +00001120 status=SetImageExtent(image,image->columns,image->rows,exception);
1121 if (status == MagickFalse)
1122 return(DestroyImageList(image));
cristy04ea8a02012-09-30 15:23:28 +00001123 for (n=0; n < (ssize_t) dpx.image.number_elements; n++)
cristy3ed852e2009-09-05 21:47:34 +00001124 {
cristy04ea8a02012-09-30 15:23:28 +00001125 /*
1126 Convert DPX raster image to pixel packets.
1127 */
cristya230a612014-01-05 20:51:47 +00001128 if ((dpx.image.image_element[n].data_offset != ~0U) &&
cristy04ea8a02012-09-30 15:23:28 +00001129 (dpx.image.image_element[n].data_offset != 0U))
cristyff024b42010-02-21 22:55:09 +00001130 {
cristy04ea8a02012-09-30 15:23:28 +00001131 MagickOffsetType
1132 data_offset;
1133
1134 data_offset=(MagickOffsetType) dpx.image.image_element[n].data_offset;
1135 if (data_offset < offset)
1136 offset=SeekBlob(image,data_offset,SEEK_SET);
1137 else
1138 for ( ; offset < data_offset; offset++)
1139 (void) ReadBlobByte(image);
1140 if (offset != data_offset)
1141 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
1142 }
cristyea485152012-10-03 11:48:50 +00001143 SetPrimaryChromaticity((DPXColorimetric)
1144 dpx.image.image_element[n].colorimetric,&image->chromaticity);
1145 image->depth=dpx.image.image_element[n].bit_size;
cristy04ea8a02012-09-30 15:23:28 +00001146 samples_per_pixel=1;
1147 quantum_type=GrayQuantum;
cristyea485152012-10-03 11:48:50 +00001148 component_type=dpx.image.image_element[n].descriptor;
cristy04ea8a02012-09-30 15:23:28 +00001149 switch (component_type)
1150 {
1151 case CbYCrY422ComponentType:
1152 {
1153 samples_per_pixel=2;
1154 quantum_type=CbYCrYQuantum;
1155 break;
cristyff024b42010-02-21 22:55:09 +00001156 }
cristy04ea8a02012-09-30 15:23:28 +00001157 case CbYACrYA4224ComponentType:
1158 case CbYCr444ComponentType:
1159 {
1160 samples_per_pixel=3;
1161 quantum_type=CbYCrQuantum;
1162 break;
1163 }
1164 case RGBComponentType:
1165 {
1166 samples_per_pixel=3;
1167 quantum_type=RGBQuantum;
1168 break;
1169 }
1170 case ABGRComponentType:
1171 case RGBAComponentType:
1172 {
1173 image->alpha_trait=BlendPixelTrait;
1174 samples_per_pixel=4;
1175 quantum_type=RGBAQuantum;
1176 break;
1177 }
1178 default:
1179 break;
1180 }
1181 switch (component_type)
1182 {
1183 case CbYCrY422ComponentType:
1184 case CbYACrYA4224ComponentType:
1185 case CbYCr444ComponentType:
1186 {
1187 SetImageColorspace(image,Rec709YCbCrColorspace,exception);
1188 break;
1189 }
1190 case LumaComponentType:
1191 {
cristyea485152012-10-03 11:48:50 +00001192 SetImageColorspace(image,GRAYColorspace,exception);
cristy04ea8a02012-09-30 15:23:28 +00001193 break;
1194 }
1195 default:
1196 {
1197 SetImageColorspace(image,sRGBColorspace,exception);
cristyc7f92ea2013-01-10 19:59:00 +00001198 if (dpx.image.image_element[n].transfer_characteristic == LogarithmicColorimetric)
cristy04ea8a02012-09-30 15:23:28 +00001199 SetImageColorspace(image,LogColorspace,exception);
cristyc7f92ea2013-01-10 19:59:00 +00001200 if (dpx.image.image_element[n].transfer_characteristic == PrintingDensityColorimetric)
cristy04ea8a02012-09-30 15:23:28 +00001201 SetImageColorspace(image,LogColorspace,exception);
1202 break;
1203 }
1204 }
1205 extent=GetBytesPerRow(image->columns,samples_per_pixel,image->depth,
1206 dpx.image.image_element[n].packing == 0 ? MagickFalse : MagickTrue);
1207 /*
1208 DPX any-bit pixel format.
1209 */
1210 status=MagickTrue;
1211 row=0;
cristy5f766ef2014-12-14 21:12:47 +00001212 quantum_info=AcquireQuantumInfo(image_info,image);
cristy04ea8a02012-09-30 15:23:28 +00001213 if (quantum_info == (QuantumInfo *) NULL)
1214 ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed");
1215 SetQuantumQuantum(quantum_info,32);
1216 SetQuantumPack(quantum_info,dpx.image.image_element[n].packing == 0 ?
1217 MagickTrue : MagickFalse);
1218 for (y=0; y < (ssize_t) image->rows; y++)
1219 {
cristybd797f12015-01-24 20:42:32 +00001220 const void
1221 *pixels;
1222
cristy04ea8a02012-09-30 15:23:28 +00001223 MagickBooleanType
1224 sync;
1225
1226 register Quantum
1227 *q;
1228
1229 size_t
1230 length;
1231
1232 ssize_t
1233 count,
1234 offset;
1235
cristy04ea8a02012-09-30 15:23:28 +00001236 if (status == MagickFalse)
1237 continue;
cristycdce6ac2015-01-24 23:06:04 +00001238 pixels=ReadBlobStream(image,extent,GetQuantumPixels(quantum_info),
cristybd797f12015-01-24 20:42:32 +00001239 &count);
cristy04ea8a02012-09-30 15:23:28 +00001240 if (count != (ssize_t) extent)
1241 status=MagickFalse;
cristybd797f12015-01-24 20:42:32 +00001242 if ((image->progress_monitor != (MagickProgressMonitor) NULL) &&
1243 (image->previous == (Image *) NULL))
1244 {
1245 MagickBooleanType
1246 proceed;
1247
1248 proceed=SetImageProgress(image,LoadImageTag,(MagickOffsetType) row,
1249 image->rows);
1250 if (proceed == MagickFalse)
1251 status=MagickFalse;
1252 }
1253 offset=row++;
cristy04ea8a02012-09-30 15:23:28 +00001254 q=QueueAuthenticPixels(image,0,offset,image->columns,1,exception);
1255 if (q == (Quantum *) NULL)
1256 {
1257 status=MagickFalse;
1258 continue;
1259 }
1260 length=ImportQuantumPixels(image,(CacheView *) NULL,quantum_info,
1261 quantum_type,pixels,exception);
1262 (void) length;
1263 sync=SyncAuthenticPixels(image,exception);
1264 if (sync == MagickFalse)
1265 status=MagickFalse;
1266 }
1267 quantum_info=DestroyQuantumInfo(quantum_info);
1268 if (status == MagickFalse)
1269 ThrowReaderException(CorruptImageError,"UnableToReadImageData");
1270 SetQuantumImageType(image,quantum_type);
1271 if (EOFBlob(image) != MagickFalse)
1272 ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile",
1273 image->filename);
1274 if ((i+1) < (ssize_t) dpx.image.number_elements)
1275 {
1276 /*
1277 Allocate next image structure.
1278 */
1279 AcquireNextImage(image_info,image,exception);
1280 if (GetNextImageInList(image) == (Image *) NULL)
1281 {
1282 image=DestroyImageList(image);
1283 return((Image *) NULL);
1284 }
1285 image=SyncNextImageInList(image);
1286 status=SetImageProgress(image,LoadImagesTag,TellBlob(image),
1287 GetBlobSize(image));
1288 if (status == MagickFalse)
1289 break;
1290 }
cristyff024b42010-02-21 22:55:09 +00001291 }
cristy3ed852e2009-09-05 21:47:34 +00001292 (void) CloseBlob(image);
1293 return(GetFirstImageInList(image));
1294}
1295
1296/*
1297%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1298% %
1299% %
1300% %
1301% R e g i s t e r D P X I m a g e %
1302% %
1303% %
1304% %
1305%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1306%
1307% RegisterDPXImage() adds properties for the DPX image format to
1308% the list of supported formats. The properties include the image format
1309% tag, a method to read and/or write the format, whether the format
1310% supports the saving of more than one frame to the same file or blob,
1311% whether the format supports native in-memory I/O, and a brief
1312% description of the format.
1313%
1314% The format of the RegisterDPXImage method is:
1315%
cristybb503372010-05-27 20:51:26 +00001316% size_t RegisterDPXImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001317%
1318*/
cristybb503372010-05-27 20:51:26 +00001319ModuleExport size_t RegisterDPXImage(void)
cristy3ed852e2009-09-05 21:47:34 +00001320{
1321 MagickInfo
1322 *entry;
1323
1324 static const char
1325 *DPXNote =
1326 {
1327 "Digital Moving Picture Exchange Bitmap, Version 2.0.\n"
1328 "See SMPTE 268M-2003 specification at http://www.smtpe.org\n"
1329 };
1330
1331 entry=SetMagickInfo("DPX");
1332 entry->decoder=(DecodeImageHandler *) ReadDPXImage;
1333 entry->encoder=(EncodeImageHandler *) WriteDPXImage;
1334 entry->magick=(IsImageFormatHandler *) IsDPX;
dirk08e9a112015-02-22 01:51:41 +00001335 entry->flags^=CoderAdjoinFlag;
1336 entry->flags|=CoderSeekableStreamFlag;
cristy3ed852e2009-09-05 21:47:34 +00001337 entry->description=ConstantString("SMPTE 268M-2003 (DPX 2.0)");
1338 entry->note=ConstantString(DPXNote);
1339 entry->module=ConstantString("DPX");
1340 (void) RegisterMagickInfo(entry);
1341 return(MagickImageCoderSignature);
1342}
1343
1344/*
1345%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1346% %
1347% %
1348% %
1349% U n r e g i s t e r D P X I m a g e %
1350% %
1351% %
1352% %
1353%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1354%
1355% UnregisterDPXImage() removes format registrations made by the
1356% DPX module from the list of supported formats.
1357%
1358% The format of the UnregisterDPXImage method is:
1359%
1360% UnregisterDPXImage(void)
1361%
1362*/
1363ModuleExport void UnregisterDPXImage(void)
1364{
1365 (void) UnregisterMagickInfo("DPX");
1366}
1367
1368/*
1369%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1370% %
1371% %
1372% %
1373% W r i t e D P X I m a g e %
1374% %
1375% %
1376% %
1377%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1378%
1379% WriteDPXImage() writes an image in DPX encoded image format.
1380%
1381% The format of the WriteDPXImage method is:
1382%
cristy1e178e72011-08-28 19:44:34 +00001383% MagickBooleanType WriteDPXImage(const ImageInfo *image_info,
1384% Image *image,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001385%
1386% A description of each parameter follows.
1387%
1388% o image_info: the image info.
1389%
1390% o image: The image.
1391%
cristy1e178e72011-08-28 19:44:34 +00001392% o exception: return any errors or warnings in this structure.
1393%
cristy3ed852e2009-09-05 21:47:34 +00001394*/
1395
cristy3ed852e2009-09-05 21:47:34 +00001396static unsigned int StringToTimeCode(const char *key)
1397{
1398 char
1399 buffer[2];
1400
cristybb503372010-05-27 20:51:26 +00001401 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001402 i;
1403
1404 unsigned int
1405 shift,
1406 value;
1407
1408 value=0;
1409 shift=28;
1410 buffer[1]='\0';
1411 for (i=0; (*key != 0) && (i < 11); i++)
1412 {
1413 if (isxdigit((int) ((unsigned char) *key)) == 0)
1414 {
1415 key++;
1416 continue;
1417 }
1418 buffer[0]=(*key++);
1419 value|=(unsigned int) ((strtol(buffer,(char **) NULL,16)) << shift);
1420 shift-=4;
1421 }
1422 return(value);
1423}
1424
cristy1e178e72011-08-28 19:44:34 +00001425static MagickBooleanType WriteDPXImage(const ImageInfo *image_info,Image *image,
1426 ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001427{
1428 const char
1429 *value;
1430
1431 const StringInfo
1432 *profile;
1433
1434 DPXInfo
1435 dpx;
1436
cristybccc4f42011-11-24 17:57:52 +00001437 GeometryInfo
1438 geometry_info;
1439
cristy3ed852e2009-09-05 21:47:34 +00001440 MagickBooleanType
1441 status;
1442
1443 MagickOffsetType
1444 offset;
1445
1446 MagickStatusType
1447 flags;
1448
cristy3ed852e2009-09-05 21:47:34 +00001449 QuantumInfo
1450 *quantum_info;
1451
1452 QuantumType
1453 quantum_type;
1454
cristy4c08aed2011-07-01 19:47:50 +00001455 register const Quantum
cristy3ed852e2009-09-05 21:47:34 +00001456 *p;
1457
cristybb503372010-05-27 20:51:26 +00001458 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001459 i;
1460
cristy1e178e72011-08-28 19:44:34 +00001461 size_t
1462 extent;
1463
cristy202de442011-04-24 18:19:07 +00001464 ssize_t
1465 count,
1466 horizontal_factor,
1467 vertical_factor,
1468 y;
1469
cristy3ed852e2009-09-05 21:47:34 +00001470 time_t
1471 seconds;
1472
1473 unsigned char
1474 *pixels;
1475
1476 /*
1477 Open output image file.
1478 */
1479 assert(image_info != (const ImageInfo *) NULL);
1480 assert(image_info->signature == MagickSignature);
1481 assert(image != (Image *) NULL);
1482 assert(image->signature == MagickSignature);
1483 if (image->debug != MagickFalse)
1484 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename);
1485 horizontal_factor=4;
1486 vertical_factor=4;
1487 if (image_info->sampling_factor != (char *) NULL)
1488 {
1489 GeometryInfo
1490 geometry_info;
1491
1492 MagickStatusType
1493 flags;
1494
1495 flags=ParseGeometry(image_info->sampling_factor,&geometry_info);
cristybb503372010-05-27 20:51:26 +00001496 horizontal_factor=(ssize_t) geometry_info.rho;
1497 vertical_factor=(ssize_t) geometry_info.sigma;
cristy3ed852e2009-09-05 21:47:34 +00001498 if ((flags & SigmaValue) == 0)
1499 vertical_factor=horizontal_factor;
1500 if ((horizontal_factor != 1) && (horizontal_factor != 2) &&
1501 (horizontal_factor != 4) && (vertical_factor != 1) &&
1502 (vertical_factor != 2) && (vertical_factor != 4))
1503 ThrowWriterException(CorruptImageError,"UnexpectedSamplingFactor");
1504 }
1505 if ((image->colorspace == YCbCrColorspace) &&
1506 ((horizontal_factor == 2) || (vertical_factor == 2)))
1507 if ((image->columns % 2) != 0)
1508 image->columns++;
cristy3a37efd2011-08-28 20:31:03 +00001509 assert(exception != (ExceptionInfo *) NULL);
1510 assert(exception->signature == MagickSignature);
cristy1e178e72011-08-28 19:44:34 +00001511 status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception);
cristy3ed852e2009-09-05 21:47:34 +00001512 if (status == MagickFalse)
1513 return(status);
1514 /*
1515 Write file header.
1516 */
1517 (void) ResetMagickMemory(&dpx,0,sizeof(dpx));
1518 offset=0;
1519 dpx.file.magic=0x53445058U;
1520 offset+=WriteBlobLong(image,dpx.file.magic);
1521 dpx.file.image_offset=0x2000U;
cristy96cf0ac2014-02-25 12:28:17 +00001522 profile=GetImageProfile(image,"dpx:user-data");
cristy3ed852e2009-09-05 21:47:34 +00001523 if (profile != (StringInfo *) NULL)
1524 {
cristy61047b62010-05-22 02:15:20 +00001525 if (GetStringInfoLength(profile) > 1048576)
1526 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
cristy3ed852e2009-09-05 21:47:34 +00001527 dpx.file.image_offset+=(unsigned int) GetStringInfoLength(profile);
1528 dpx.file.image_offset=(((dpx.file.image_offset+0x2000-1)/0x2000)*0x2000);
1529 }
1530 offset+=WriteBlobLong(image,dpx.file.image_offset);
cristy4fab6632014-05-12 00:38:45 +00001531 (void) strncpy(dpx.file.version,"V2.0",sizeof(dpx.file.version)-1);
cristy3ed852e2009-09-05 21:47:34 +00001532 offset+=WriteBlob(image,8,(unsigned char *) &dpx.file.version);
1533 dpx.file.file_size=(unsigned int) (4U*image->columns*image->rows+
1534 dpx.file.image_offset);
1535 offset+=WriteBlobLong(image,dpx.file.file_size);
1536 dpx.file.ditto_key=1U; /* new frame */
1537 offset+=WriteBlobLong(image,dpx.file.ditto_key);
1538 dpx.file.generic_size=0x00000680U;
1539 offset+=WriteBlobLong(image,dpx.file.generic_size);
1540 dpx.file.industry_size=0x00000180U;
1541 offset+=WriteBlobLong(image,dpx.file.industry_size);
1542 dpx.file.user_size=0;
1543 if (profile != (StringInfo *) NULL)
1544 {
1545 dpx.file.user_size+=(unsigned int) GetStringInfoLength(profile);
1546 dpx.file.user_size=(((dpx.file.user_size+0x2000-1)/0x2000)*0x2000);
1547 }
1548 offset+=WriteBlobLong(image,dpx.file.user_size);
cristy96cf0ac2014-02-25 12:28:17 +00001549 value=GetImageArtifact(image,"dpx:file.filename");
cristy3ed852e2009-09-05 21:47:34 +00001550 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001551 (void) strncpy(dpx.file.filename,value,sizeof(dpx.file.filename)-1);
cristy3ed852e2009-09-05 21:47:34 +00001552 offset+=WriteBlob(image,sizeof(dpx.file.filename),(unsigned char *)
1553 dpx.file.filename);
1554 seconds=time((time_t *) NULL);
1555 (void) FormatMagickTime(seconds,sizeof(dpx.file.timestamp),
1556 dpx.file.timestamp);
1557 offset+=WriteBlob(image,sizeof(dpx.file.timestamp),(unsigned char *)
1558 dpx.file.timestamp);
cristybb503372010-05-27 20:51:26 +00001559 (void) strncpy(dpx.file.creator,GetMagickVersion((size_t *) NULL),
cristy4fab6632014-05-12 00:38:45 +00001560 sizeof(dpx.file.creator)-1);
cristy96cf0ac2014-02-25 12:28:17 +00001561 value=GetImageArtifact(image,"dpx:file.creator");
cristy3ed852e2009-09-05 21:47:34 +00001562 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001563 (void) strncpy(dpx.file.creator,value,sizeof(dpx.file.creator)-1);
cristy3ed852e2009-09-05 21:47:34 +00001564 offset+=WriteBlob(image,sizeof(dpx.file.creator),(unsigned char *)
1565 dpx.file.creator);
cristy96cf0ac2014-02-25 12:28:17 +00001566 value=GetImageArtifact(image,"dpx:file.project");
cristy3ed852e2009-09-05 21:47:34 +00001567 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001568 (void) strncpy(dpx.file.project,value,sizeof(dpx.file.project)-1);
cristy3ed852e2009-09-05 21:47:34 +00001569 offset+=WriteBlob(image,sizeof(dpx.file.project),(unsigned char *)
1570 dpx.file.project);
cristy96cf0ac2014-02-25 12:28:17 +00001571 value=GetImageArtifact(image,"dpx:file.copyright");
cristy3ed852e2009-09-05 21:47:34 +00001572 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001573 (void) strncpy(dpx.file.copyright,value,sizeof(dpx.file.copyright)-1);
cristy3ed852e2009-09-05 21:47:34 +00001574 offset+=WriteBlob(image,sizeof(dpx.file.copyright),(unsigned char *)
1575 dpx.file.copyright);
cristy466a68c2013-11-08 15:13:21 +00001576 dpx.file.encrypt_key=(~0U);
cristy3ed852e2009-09-05 21:47:34 +00001577 offset+=WriteBlobLong(image,dpx.file.encrypt_key);
1578 offset+=WriteBlob(image,sizeof(dpx.file.reserve),(unsigned char *)
1579 dpx.file.reserve);
1580 /*
1581 Write image header.
1582 */
cristye7820582013-01-01 23:42:55 +00001583 switch (image->orientation)
1584 {
1585 default:
1586 case TopLeftOrientation: dpx.image.orientation=0; break;
1587 case TopRightOrientation: dpx.image.orientation=1; break;
1588 case BottomLeftOrientation: dpx.image.orientation=2; break;
1589 case BottomRightOrientation: dpx.image.orientation=3; break;
1590 case LeftTopOrientation: dpx.image.orientation=4; break;
1591 case RightTopOrientation: dpx.image.orientation=5; break;
1592 case LeftBottomOrientation: dpx.image.orientation=6; break;
1593 case RightBottomOrientation: dpx.image.orientation=7; break;
1594 }
cristy3ed852e2009-09-05 21:47:34 +00001595 offset+=WriteBlobShort(image,dpx.image.orientation);
1596 dpx.image.number_elements=1;
1597 offset+=WriteBlobShort(image,dpx.image.number_elements);
1598 if ((image->columns != (unsigned int) image->columns) ||
1599 (image->rows != (unsigned int) image->rows))
1600 ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit");
1601 offset+=WriteBlobLong(image,(unsigned int) image->columns);
1602 offset+=WriteBlobLong(image,(unsigned int) image->rows);
1603 for (i=0; i < 8; i++)
1604 {
1605 dpx.image.image_element[i].data_sign=0U;
1606 offset+=WriteBlobLong(image,dpx.image.image_element[i].data_sign);
1607 dpx.image.image_element[i].low_data=0U;
1608 offset+=WriteBlobLong(image,dpx.image.image_element[i].low_data);
1609 dpx.image.image_element[i].low_quantity=0.0f;
1610 offset+=WriteBlobFloat(image,dpx.image.image_element[i].low_quantity);
1611 dpx.image.image_element[i].high_data=0U;
1612 offset+=WriteBlobLong(image,dpx.image.image_element[i].high_data);
1613 dpx.image.image_element[i].high_quantity=0.0f;
1614 offset+=WriteBlobFloat(image,dpx.image.image_element[i].high_quantity);
1615 dpx.image.image_element[i].descriptor=0;
1616 if (i == 0)
1617 switch (image->colorspace)
1618 {
1619 case Rec601YCbCrColorspace:
1620 case Rec709YCbCrColorspace:
1621 case YCbCrColorspace:
1622 {
1623 dpx.image.image_element[i].descriptor=CbYCr444ComponentType;
cristy17f11b02014-12-20 19:37:04 +00001624 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001625 dpx.image.image_element[i].descriptor=CbYCrA4444ComponentType;
1626 break;
1627 }
1628 default:
1629 {
1630 dpx.image.image_element[i].descriptor=RGBComponentType;
cristy17f11b02014-12-20 19:37:04 +00001631 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001632 dpx.image.image_element[i].descriptor=RGBAComponentType;
cristyf59a8922010-02-28 19:51:23 +00001633 if ((image_info->type != TrueColorType) &&
cristy17f11b02014-12-20 19:37:04 +00001634 (image->alpha_trait == UndefinedPixelTrait) &&
cristy1e178e72011-08-28 19:44:34 +00001635 (IsImageGray(image,exception) != MagickFalse))
cristycaac2942009-10-01 13:36:18 +00001636 dpx.image.image_element[i].descriptor=LumaComponentType;
cristy3ed852e2009-09-05 21:47:34 +00001637 break;
1638 }
1639 }
1640 offset+=WriteBlobByte(image,dpx.image.image_element[i].descriptor);
cristyc7f92ea2013-01-10 19:59:00 +00001641 dpx.image.image_element[i].transfer_characteristic=0;
cristy3ed852e2009-09-05 21:47:34 +00001642 if (image->colorspace == LogColorspace)
cristyc7f92ea2013-01-10 19:59:00 +00001643 dpx.image.image_element[0].transfer_characteristic=
1644 PrintingDensityColorimetric;
1645 offset+=WriteBlobByte(image,
1646 dpx.image.image_element[i].transfer_characteristic);
cristy3ed852e2009-09-05 21:47:34 +00001647 dpx.image.image_element[i].colorimetric=0;
1648 offset+=WriteBlobByte(image,dpx.image.image_element[i].colorimetric);
1649 dpx.image.image_element[i].bit_size=0;
1650 if (i == 0)
1651 dpx.image.image_element[i].bit_size=(unsigned char) image->depth;
1652 offset+=WriteBlobByte(image,dpx.image.image_element[i].bit_size);
1653 dpx.image.image_element[i].packing=0;
1654 if ((image->depth == 10) || (image->depth == 12))
1655 dpx.image.image_element[i].packing=1;
1656 offset+=WriteBlobShort(image,dpx.image.image_element[i].packing);
1657 dpx.image.image_element[i].encoding=0;
1658 offset+=WriteBlobShort(image,dpx.image.image_element[i].encoding);
1659 dpx.image.image_element[i].data_offset=0U;
1660 if (i == 0)
1661 dpx.image.image_element[i].data_offset=dpx.file.image_offset;
1662 offset+=WriteBlobLong(image,dpx.image.image_element[i].data_offset);
1663 dpx.image.image_element[i].end_of_line_padding=0U;
1664 offset+=WriteBlobLong(image,dpx.image.image_element[i].end_of_line_padding);
1665 offset+=WriteBlobLong(image,
1666 dpx.image.image_element[i].end_of_image_padding);
1667 offset+=WriteBlob(image,sizeof(dpx.image.image_element[i].description),
1668 (unsigned char *) dpx.image.image_element[i].description);
1669 }
1670 offset+=WriteBlob(image,sizeof(dpx.image.reserve),(unsigned char *)
1671 dpx.image.reserve);
1672 /*
1673 Write orientation header.
1674 */
1675 if ((image->rows != image->magick_rows) ||
1676 (image->columns != image->magick_columns))
1677 {
1678 /*
1679 These properties are not valid if image size changed.
1680 */
1681 (void) DeleteImageProperty(image,"dpx:orientation.x_offset");
1682 (void) DeleteImageProperty(image,"dpx:orientation.y_offset");
1683 (void) DeleteImageProperty(image,"dpx:orientation.x_center");
1684 (void) DeleteImageProperty(image,"dpx:orientation.y_center");
1685 (void) DeleteImageProperty(image,"dpx:orientation.x_size");
1686 (void) DeleteImageProperty(image,"dpx:orientation.y_size");
1687 }
1688 dpx.orientation.x_offset=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001689 value=GetImageArtifact(image,"dpx:orientation.x_offset");
cristy3ed852e2009-09-05 21:47:34 +00001690 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001691 dpx.orientation.x_offset=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001692 offset+=WriteBlobLong(image,dpx.orientation.x_offset);
1693 dpx.orientation.y_offset=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001694 value=GetImageArtifact(image,"dpx:orientation.y_offset");
cristy3ed852e2009-09-05 21:47:34 +00001695 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001696 dpx.orientation.y_offset=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001697 offset+=WriteBlobLong(image,dpx.orientation.y_offset);
1698 dpx.orientation.x_center=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001699 value=GetImageArtifact(image,"dpx:orientation.x_center");
cristy3ed852e2009-09-05 21:47:34 +00001700 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001701 dpx.orientation.x_center=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001702 offset+=WriteBlobFloat(image,dpx.orientation.x_center);
1703 dpx.orientation.y_center=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001704 value=GetImageArtifact(image,"dpx:orientation.y_center");
cristy3ed852e2009-09-05 21:47:34 +00001705 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001706 dpx.orientation.y_center=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001707 offset+=WriteBlobFloat(image,dpx.orientation.y_center);
1708 dpx.orientation.x_size=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001709 value=GetImageArtifact(image,"dpx:orientation.x_size");
cristy3ed852e2009-09-05 21:47:34 +00001710 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001711 dpx.orientation.x_size=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001712 offset+=WriteBlobLong(image,dpx.orientation.x_size);
1713 dpx.orientation.y_size=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001714 value=GetImageArtifact(image,"dpx:orientation.y_size");
cristy3ed852e2009-09-05 21:47:34 +00001715 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001716 dpx.orientation.y_size=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001717 offset+=WriteBlobLong(image,dpx.orientation.y_size);
cristy96cf0ac2014-02-25 12:28:17 +00001718 value=GetImageArtifact(image,"dpx:orientation.filename");
cristy3ed852e2009-09-05 21:47:34 +00001719 if (value != (const char *) NULL)
1720 (void) strncpy(dpx.orientation.filename,value,
cristy4fab6632014-05-12 00:38:45 +00001721 sizeof(dpx.orientation.filename)-1);
cristy3ed852e2009-09-05 21:47:34 +00001722 offset+=WriteBlob(image,sizeof(dpx.orientation.filename),(unsigned char *)
1723 dpx.orientation.filename);
1724 offset+=WriteBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *)
1725 dpx.orientation.timestamp);
cristy96cf0ac2014-02-25 12:28:17 +00001726 value=GetImageArtifact(image,"dpx:orientation.device");
cristy3ed852e2009-09-05 21:47:34 +00001727 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001728 (void) strncpy(dpx.orientation.device,value,
1729 sizeof(dpx.orientation.device)-1);
cristy3ed852e2009-09-05 21:47:34 +00001730 offset+=WriteBlob(image,sizeof(dpx.orientation.device),(unsigned char *)
1731 dpx.orientation.device);
cristy96cf0ac2014-02-25 12:28:17 +00001732 value=GetImageArtifact(image,"dpx:orientation.serial");
cristy7959f822010-03-07 21:47:41 +00001733 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001734 (void) strncpy(dpx.orientation.serial,value,
1735 sizeof(dpx.orientation.serial)-1);
cristy3ed852e2009-09-05 21:47:34 +00001736 offset+=WriteBlob(image,sizeof(dpx.orientation.serial),(unsigned char *)
1737 dpx.orientation.serial);
1738 for (i=0; i < 4; i++)
1739 dpx.orientation.border[i]=0;
cristy96cf0ac2014-02-25 12:28:17 +00001740 value=GetImageArtifact(image,"dpx:orientation.border");
cristy3ed852e2009-09-05 21:47:34 +00001741 if (value != (const char *) NULL)
1742 {
1743 flags=ParseGeometry(value,&geometry_info);
1744 if ((flags & SigmaValue) == 0)
1745 geometry_info.sigma=geometry_info.rho;
1746 dpx.orientation.border[0]=(unsigned short) (geometry_info.rho+0.5);
1747 dpx.orientation.border[1]=(unsigned short) (geometry_info.sigma+0.5);
1748 dpx.orientation.border[2]=(unsigned short) (geometry_info.xi+0.5);
1749 dpx.orientation.border[3]=(unsigned short) (geometry_info.psi+0.5);
1750 }
1751 for (i=0; i < 4; i++)
1752 offset+=WriteBlobShort(image,dpx.orientation.border[i]);
1753 for (i=0; i < 2; i++)
1754 dpx.orientation.aspect_ratio[i]=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001755 value=GetImageArtifact(image,"dpx:orientation.aspect_ratio");
cristy3ed852e2009-09-05 21:47:34 +00001756 if (value != (const char *) NULL)
1757 {
1758 flags=ParseGeometry(value,&geometry_info);
1759 if ((flags & SigmaValue) == 0)
1760 geometry_info.sigma=geometry_info.rho;
1761 dpx.orientation.aspect_ratio[0]=(unsigned int) (geometry_info.rho+0.5);
1762 dpx.orientation.aspect_ratio[1]=(unsigned int) (geometry_info.sigma+0.5);
1763 }
1764 for (i=0; i < 2; i++)
1765 offset+=WriteBlobLong(image,dpx.orientation.aspect_ratio[i]);
1766 offset+=WriteBlob(image,sizeof(dpx.orientation.reserve),(unsigned char *)
1767 dpx.orientation.reserve);
1768 /*
1769 Write film header.
1770 */
cristyc69f5e42014-04-18 11:05:25 +00001771 (void) ResetMagickMemory(dpx.film.id,0,sizeof(dpx.film.id));
cristy96cf0ac2014-02-25 12:28:17 +00001772 value=GetImageArtifact(image,"dpx:film.id");
cristy3ed852e2009-09-05 21:47:34 +00001773 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001774 (void) strncpy(dpx.film.id,value,sizeof(dpx.film.id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001775 offset+=WriteBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id);
cristyc69f5e42014-04-18 11:05:25 +00001776 (void) ResetMagickMemory(dpx.film.type,0,sizeof(dpx.film.type));
cristy96cf0ac2014-02-25 12:28:17 +00001777 value=GetImageArtifact(image,"dpx:film.type");
cristy3ed852e2009-09-05 21:47:34 +00001778 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001779 (void) strncpy(dpx.film.type,value,sizeof(dpx.film.type)-1);
cristy3ed852e2009-09-05 21:47:34 +00001780 offset+=WriteBlob(image,sizeof(dpx.film.type),(unsigned char *)
1781 dpx.film.type);
cristyc69f5e42014-04-18 11:05:25 +00001782 (void) ResetMagickMemory(dpx.film.offset,0,sizeof(dpx.film.offset));
cristy96cf0ac2014-02-25 12:28:17 +00001783 value=GetImageArtifact(image,"dpx:film.offset");
cristy3ed852e2009-09-05 21:47:34 +00001784 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001785 (void) strncpy(dpx.film.offset,value,sizeof(dpx.film.offset)-1);
cristy3ed852e2009-09-05 21:47:34 +00001786 offset+=WriteBlob(image,sizeof(dpx.film.offset),(unsigned char *)
1787 dpx.film.offset);
cristyc69f5e42014-04-18 11:05:25 +00001788 (void) ResetMagickMemory(dpx.film.prefix,0,sizeof(dpx.film.prefix));
cristy96cf0ac2014-02-25 12:28:17 +00001789 value=GetImageArtifact(image,"dpx:film.prefix");
cristy3ed852e2009-09-05 21:47:34 +00001790 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001791 (void) strncpy(dpx.film.prefix,value,sizeof(dpx.film.prefix)-1);
cristy3ed852e2009-09-05 21:47:34 +00001792 offset+=WriteBlob(image,sizeof(dpx.film.prefix),(unsigned char *)
1793 dpx.film.prefix);
cristyc69f5e42014-04-18 11:05:25 +00001794 (void) ResetMagickMemory(dpx.film.count,0,sizeof(dpx.film.count));
cristy96cf0ac2014-02-25 12:28:17 +00001795 value=GetImageArtifact(image,"dpx:film.count");
cristy3ed852e2009-09-05 21:47:34 +00001796 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001797 (void) strncpy(dpx.film.count,value,sizeof(dpx.film.count)-1);
cristy3ed852e2009-09-05 21:47:34 +00001798 offset+=WriteBlob(image,sizeof(dpx.film.count),(unsigned char *)
1799 dpx.film.count);
cristyc69f5e42014-04-18 11:05:25 +00001800 (void) ResetMagickMemory(dpx.film.format,0,sizeof(dpx.film.format));
cristy96cf0ac2014-02-25 12:28:17 +00001801 value=GetImageArtifact(image,"dpx:film.format");
cristy3ed852e2009-09-05 21:47:34 +00001802 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001803 (void) strncpy(dpx.film.format,value,sizeof(dpx.film.format)-1);
cristy3ed852e2009-09-05 21:47:34 +00001804 offset+=WriteBlob(image,sizeof(dpx.film.format),(unsigned char *)
1805 dpx.film.format);
1806 dpx.film.frame_position=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001807 value=GetImageArtifact(image,"dpx:film.frame_position");
cristy3ed852e2009-09-05 21:47:34 +00001808 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001809 dpx.film.frame_position=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001810 offset+=WriteBlobLong(image,dpx.film.frame_position);
1811 dpx.film.sequence_extent=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001812 value=GetImageArtifact(image,"dpx:film.sequence_extent");
cristy3ed852e2009-09-05 21:47:34 +00001813 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001814 dpx.film.sequence_extent=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001815 offset+=WriteBlobLong(image,dpx.film.sequence_extent);
1816 dpx.film.held_count=0U;
cristy96cf0ac2014-02-25 12:28:17 +00001817 value=GetImageArtifact(image,"dpx:film.held_count");
cristy3ed852e2009-09-05 21:47:34 +00001818 if (value != (const char *) NULL)
cristye27293e2009-12-18 02:53:20 +00001819 dpx.film.held_count=(unsigned int) StringToUnsignedLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001820 offset+=WriteBlobLong(image,dpx.film.held_count);
1821 dpx.film.frame_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001822 value=GetImageArtifact(image,"dpx:film.frame_rate");
cristy3ed852e2009-09-05 21:47:34 +00001823 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001824 dpx.film.frame_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001825 offset+=WriteBlobFloat(image,dpx.film.frame_rate);
1826 dpx.film.shutter_angle=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001827 value=GetImageArtifact(image,"dpx:film.shutter_angle");
cristy3ed852e2009-09-05 21:47:34 +00001828 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001829 dpx.film.shutter_angle=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001830 offset+=WriteBlobFloat(image,dpx.film.shutter_angle);
cristyc69f5e42014-04-18 11:05:25 +00001831 (void) ResetMagickMemory(dpx.film.frame_id,0,sizeof(dpx.film.frame_id));
cristy96cf0ac2014-02-25 12:28:17 +00001832 value=GetImageArtifact(image,"dpx:film.frame_id");
cristy3ed852e2009-09-05 21:47:34 +00001833 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001834 (void) strncpy(dpx.film.frame_id,value,sizeof(dpx.film.frame_id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001835 offset+=WriteBlob(image,sizeof(dpx.film.frame_id),(unsigned char *)
1836 dpx.film.frame_id);
cristy96cf0ac2014-02-25 12:28:17 +00001837 value=GetImageArtifact(image,"dpx:film.slate");
cristy3ed852e2009-09-05 21:47:34 +00001838 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001839 (void) strncpy(dpx.film.slate,value,sizeof(dpx.film.slate)-1);
cristy3ed852e2009-09-05 21:47:34 +00001840 offset+=WriteBlob(image,sizeof(dpx.film.slate),(unsigned char *)
1841 dpx.film.slate);
1842 offset+=WriteBlob(image,sizeof(dpx.film.reserve),(unsigned char *)
1843 dpx.film.reserve);
1844 /*
1845 Write television header.
1846 */
cristy96cf0ac2014-02-25 12:28:17 +00001847 value=GetImageArtifact(image,"dpx:television.time.code");
cristy3ed852e2009-09-05 21:47:34 +00001848 if (value != (const char *) NULL)
1849 dpx.television.time_code=StringToTimeCode(value);
1850 offset+=WriteBlobLong(image,dpx.television.time_code);
cristy96cf0ac2014-02-25 12:28:17 +00001851 value=GetImageArtifact(image,"dpx:television.user.bits");
cristy3ed852e2009-09-05 21:47:34 +00001852 if (value != (const char *) NULL)
1853 dpx.television.user_bits=StringToTimeCode(value);
1854 offset+=WriteBlobLong(image,dpx.television.user_bits);
cristy96cf0ac2014-02-25 12:28:17 +00001855 value=GetImageArtifact(image,"dpx:television.interlace");
cristy3ed852e2009-09-05 21:47:34 +00001856 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001857 dpx.television.interlace=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001858 offset+=WriteBlobByte(image,dpx.television.interlace);
cristy96cf0ac2014-02-25 12:28:17 +00001859 value=GetImageArtifact(image,"dpx:television.field_number");
cristy3ed852e2009-09-05 21:47:34 +00001860 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001861 dpx.television.field_number=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001862 offset+=WriteBlobByte(image,dpx.television.field_number);
1863 dpx.television.video_signal=0;
cristy96cf0ac2014-02-25 12:28:17 +00001864 value=GetImageArtifact(image,"dpx:television.video_signal");
cristy3ed852e2009-09-05 21:47:34 +00001865 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001866 dpx.television.video_signal=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001867 offset+=WriteBlobByte(image,dpx.television.video_signal);
1868 dpx.television.padding=0;
cristy96cf0ac2014-02-25 12:28:17 +00001869 value=GetImageArtifact(image,"dpx:television.padding");
cristy3ed852e2009-09-05 21:47:34 +00001870 if (value != (const char *) NULL)
cristyf2f27272009-12-17 14:48:46 +00001871 dpx.television.padding=(unsigned char) StringToLong(value);
cristy3ed852e2009-09-05 21:47:34 +00001872 offset+=WriteBlobByte(image,dpx.television.padding);
1873 dpx.television.horizontal_sample_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001874 value=GetImageArtifact(image,"dpx:television.horizontal_sample_rate");
cristy3ed852e2009-09-05 21:47:34 +00001875 if (value != (const char *) NULL)
cristybccc4f42011-11-24 17:57:52 +00001876 dpx.television.horizontal_sample_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001877 offset+=WriteBlobFloat(image,dpx.television.horizontal_sample_rate);
1878 dpx.television.vertical_sample_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001879 value=GetImageArtifact(image,"dpx:television.vertical_sample_rate");
cristy3ed852e2009-09-05 21:47:34 +00001880 if (value != (const char *) NULL)
cristybccc4f42011-11-24 17:57:52 +00001881 dpx.television.vertical_sample_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001882 offset+=WriteBlobFloat(image,dpx.television.vertical_sample_rate);
1883 dpx.television.frame_rate=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001884 value=GetImageArtifact(image,"dpx:television.frame_rate");
cristy3ed852e2009-09-05 21:47:34 +00001885 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001886 dpx.television.frame_rate=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001887 offset+=WriteBlobFloat(image,dpx.television.frame_rate);
1888 dpx.television.time_offset=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001889 value=GetImageArtifact(image,"dpx:television.time_offset");
cristy3ed852e2009-09-05 21:47:34 +00001890 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001891 dpx.television.time_offset=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001892 offset+=WriteBlobFloat(image,dpx.television.time_offset);
1893 dpx.television.gamma=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001894 value=GetImageArtifact(image,"dpx:television.gamma");
cristy3ed852e2009-09-05 21:47:34 +00001895 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001896 dpx.television.gamma=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001897 offset+=WriteBlobFloat(image,dpx.television.gamma);
1898 dpx.television.black_level=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001899 value=GetImageArtifact(image,"dpx:television.black_level");
cristy3ed852e2009-09-05 21:47:34 +00001900 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001901 dpx.television.black_level=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001902 offset+=WriteBlobFloat(image,dpx.television.black_level);
1903 dpx.television.black_gain=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001904 value=GetImageArtifact(image,"dpx:television.black_gain");
cristy3ed852e2009-09-05 21:47:34 +00001905 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001906 dpx.television.black_gain=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001907 offset+=WriteBlobFloat(image,dpx.television.black_gain);
1908 dpx.television.break_point=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001909 value=GetImageArtifact(image,"dpx:television.break_point");
cristy3ed852e2009-09-05 21:47:34 +00001910 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001911 dpx.television.break_point=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001912 offset+=WriteBlobFloat(image,dpx.television.break_point);
1913 dpx.television.white_level=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001914 value=GetImageArtifact(image,"dpx:television.white_level");
cristy3ed852e2009-09-05 21:47:34 +00001915 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001916 dpx.television.white_level=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001917 offset+=WriteBlobFloat(image,dpx.television.white_level);
1918 dpx.television.integration_times=0.0f;
cristy96cf0ac2014-02-25 12:28:17 +00001919 value=GetImageArtifact(image,"dpx:television.integration_times");
cristy3ed852e2009-09-05 21:47:34 +00001920 if (value != (const char *) NULL)
cristydbdd0e32011-11-04 23:29:40 +00001921 dpx.television.integration_times=StringToDouble(value,(char **) NULL);
cristy3ed852e2009-09-05 21:47:34 +00001922 offset+=WriteBlobFloat(image,dpx.television.integration_times);
1923 offset+=WriteBlob(image,sizeof(dpx.television.reserve),(unsigned char *)
1924 dpx.television.reserve);
1925 /*
1926 Write user header.
1927 */
cristy96cf0ac2014-02-25 12:28:17 +00001928 value=GetImageArtifact(image,"dpx:user.id");
cristy3ed852e2009-09-05 21:47:34 +00001929 if (value != (const char *) NULL)
cristy4fab6632014-05-12 00:38:45 +00001930 (void) strncpy(dpx.user.id,value,sizeof(dpx.user.id)-1);
cristy3ed852e2009-09-05 21:47:34 +00001931 offset+=WriteBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id);
1932 if (profile != (StringInfo *) NULL)
1933 offset+=WriteBlob(image,GetStringInfoLength(profile),
1934 GetStringInfoDatum(profile));
1935 while (offset < (MagickOffsetType) dpx.image.image_element[0].data_offset)
1936 {
1937 count=WriteBlobByte(image,0x00);
1938 if (count != 1)
1939 {
cristy1e178e72011-08-28 19:44:34 +00001940 ThrowFileException(exception,FileOpenError,"UnableToWriteFile",
cristy3ed852e2009-09-05 21:47:34 +00001941 image->filename);
1942 break;
1943 }
1944 offset+=count;
1945 }
1946 /*
1947 Convert pixel packets to DPX raster image.
1948 */
cristy5f766ef2014-12-14 21:12:47 +00001949 quantum_info=AcquireQuantumInfo(image_info,image);
cristy891dc792010-03-04 01:47:16 +00001950 SetQuantumQuantum(quantum_info,32);
1951 SetQuantumPack(quantum_info,dpx.image.image_element[0].packing == 0 ?
1952 MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00001953 quantum_type=RGBQuantum;
cristy17f11b02014-12-20 19:37:04 +00001954 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001955 quantum_type=RGBAQuantum;
1956 if (image->colorspace == YCbCrColorspace)
1957 {
1958 quantum_type=CbYCrQuantum;
cristy17f11b02014-12-20 19:37:04 +00001959 if (image->alpha_trait != UndefinedPixelTrait)
cristy3ed852e2009-09-05 21:47:34 +00001960 quantum_type=CbYCrAQuantum;
1961 if ((horizontal_factor == 2) || (vertical_factor == 2))
1962 quantum_type=CbYCrYQuantum;
1963 }
cristy17f11b02014-12-20 19:37:04 +00001964 extent=GetBytesPerRow(image->columns,image->alpha_trait != UndefinedPixelTrait ?
cristy3b232222012-11-05 16:55:17 +00001965 4UL : 3UL,image->depth,MagickTrue);
1966 if ((image_info->type != TrueColorType) &&
cristy17f11b02014-12-20 19:37:04 +00001967 (image->alpha_trait == UndefinedPixelTrait) &&
cristy1e178e72011-08-28 19:44:34 +00001968 (IsImageGray(image,exception) != MagickFalse))
cristy3ed852e2009-09-05 21:47:34 +00001969 {
1970 quantum_type=GrayQuantum;
cristycaac2942009-10-01 13:36:18 +00001971 extent=GetBytesPerRow(image->columns,1UL,image->depth,MagickTrue);
cristy3ed852e2009-09-05 21:47:34 +00001972 }
1973 pixels=GetQuantumPixels(quantum_info);
cristybb503372010-05-27 20:51:26 +00001974 for (y=0; y < (ssize_t) image->rows; y++)
cristy3ed852e2009-09-05 21:47:34 +00001975 {
cristy1e178e72011-08-28 19:44:34 +00001976 p=GetVirtualPixels(image,0,y,image->columns,1,exception);
cristy4c08aed2011-07-01 19:47:50 +00001977 if (p == (const Quantum *) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001978 break;
cristy4c08aed2011-07-01 19:47:50 +00001979 (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info,
cristy1e178e72011-08-28 19:44:34 +00001980 quantum_type,pixels,exception);
cristy3ed852e2009-09-05 21:47:34 +00001981 count=WriteBlob(image,extent,pixels);
1982 if (count != (ssize_t) extent)
1983 break;
cristycee97112010-05-28 00:44:52 +00001984 status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y,
cristy202de442011-04-24 18:19:07 +00001985 image->rows);
cristy3ed852e2009-09-05 21:47:34 +00001986 if (status == MagickFalse)
1987 break;
1988 }
1989 quantum_info=DestroyQuantumInfo(quantum_info);
1990 (void) CloseBlob(image);
1991 return(status);
1992}