| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
| 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 % |
| 16 | % John Cristy % |
| 17 | % March 2001 % |
| 18 | % % |
| 19 | % % |
| cristy | e03a12a | 2012-12-30 17:33:30 +0000 | [diff] [blame] | 20 | % Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization % |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 21 | % 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 | */ |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 42 | #include "MagickCore/studio.h" |
| 43 | #include "MagickCore/attribute.h" |
| cristy | 76ce6e1 | 2013-04-05 14:33:38 +0000 | [diff] [blame] | 44 | #include "MagickCore/artifact.h" |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 45 | #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" |
| cristy | 73a724e | 2011-11-24 18:47:12 +0000 | [diff] [blame] | 61 | #include "MagickCore/pixel-accessor.h" |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 62 | #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" |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | Typedef declaration. |
| 71 | */ |
| 72 | typedef 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 | |
| 89 | typedef 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 | |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 116 | typedef 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 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 133 | typedef 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 | |
| 163 | typedef 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 | |
| 188 | typedef 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, |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 205 | transfer_characteristic, |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 206 | 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 | |
| 222 | typedef 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 | |
| 239 | typedef 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 | |
| 269 | typedef 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 | |
| 297 | typedef struct _DPXUserInfo |
| 298 | { |
| 299 | char |
| 300 | id[32]; |
| 301 | } DPXUserInfo; |
| 302 | |
| 303 | typedef 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 | */ |
| 327 | static MagickBooleanType |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 328 | WriteDPXImage(const ImageInfo *,Image *,ExceptionInfo *); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 329 | |
| 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 | */ |
| 355 | static 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 | |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 393 | static size_t GetBytesPerRow(const size_t columns, |
| 394 | const size_t samples_per_pixel,const size_t bits_per_pixel, |
| 395 | const MagickBooleanType pad) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 396 | { |
| 397 | size_t |
| 398 | bytes_per_row; |
| 399 | |
| 400 | switch (bits_per_pixel) |
| 401 | { |
| 402 | case 1: |
| 403 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 404 | bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/ |
| 405 | 32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 406 | break; |
| 407 | } |
| 408 | case 8: |
| 409 | default: |
| 410 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 411 | bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/ |
| 412 | 32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 413 | break; |
| 414 | } |
| 415 | case 10: |
| 416 | { |
| 417 | if (pad == MagickFalse) |
| 418 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 419 | bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+ |
| 420 | 31)/32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 421 | break; |
| 422 | } |
| cristy | ff024b4 | 2010-02-21 22:55:09 +0000 | [diff] [blame] | 423 | bytes_per_row=4*(((size_t) (32*((samples_per_pixel*columns+2)/3))+31)/32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 424 | break; |
| 425 | } |
| 426 | case 12: |
| 427 | { |
| 428 | if (pad == MagickFalse) |
| 429 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 430 | bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+ |
| 431 | 31)/32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 432 | break; |
| 433 | } |
| 434 | bytes_per_row=2*(((size_t) (16*samples_per_pixel*columns)+15)/16); |
| 435 | break; |
| 436 | } |
| 437 | case 16: |
| 438 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 439 | bytes_per_row=2*(((size_t) samples_per_pixel*columns*bits_per_pixel+8)/ |
| 440 | 16); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 441 | break; |
| 442 | } |
| 443 | case 32: |
| 444 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 445 | bytes_per_row=4*(((size_t) samples_per_pixel*columns*bits_per_pixel+31)/ |
| 446 | 32); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 447 | break; |
| 448 | } |
| 449 | case 64: |
| 450 | { |
| cristy | 4ccdaa2 | 2012-11-05 16:58:06 +0000 | [diff] [blame] | 451 | bytes_per_row=8*(((size_t) samples_per_pixel*columns*bits_per_pixel+63)/ |
| 452 | 64); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 453 | break; |
| 454 | } |
| 455 | } |
| 456 | return(bytes_per_row); |
| 457 | } |
| 458 | |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 459 | static 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 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 541 | static inline MagickBooleanType IsFloatDefined(const float value) |
| 542 | { |
| 543 | union |
| 544 | { |
| 545 | unsigned int |
| 546 | unsigned_value; |
| 547 | |
| cristy | 8a8e468 | 2013-09-26 12:55:39 +0000 | [diff] [blame] | 548 | float |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 549 | float_value; |
| 550 | } quantum; |
| 551 | |
| 552 | quantum.unsigned_value=0U; |
| cristy | 8a8e468 | 2013-09-26 12:55:39 +0000 | [diff] [blame] | 553 | quantum.float_value=(float) value; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 554 | if (quantum.unsigned_value == 0U) |
| 555 | return(MagickFalse); |
| 556 | return(MagickTrue); |
| 557 | } |
| 558 | |
| 559 | static 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 | |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 618 | static void TimeCodeToString(const size_t timestamp,char *code) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 619 | { |
| 620 | #define TimeFields 7 |
| 621 | |
| 622 | unsigned int |
| 623 | shift; |
| 624 | |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 625 | register ssize_t |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 626 | i; |
| 627 | |
| 628 | *code='\0'; |
| 629 | shift=4*TimeFields; |
| 630 | for (i=0; i <= TimeFields; i++) |
| 631 | { |
| cristy | b51dff5 | 2011-05-19 16:55:47 +0000 | [diff] [blame] | 632 | (void) FormatLocaleString(code,MaxTextExtent-strlen(code),"%x", |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 633 | (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 | |
| 642 | static 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 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 654 | MagickBooleanType |
| 655 | status; |
| 656 | |
| 657 | MagickOffsetType |
| 658 | offset; |
| 659 | |
| cristy | ff024b4 | 2010-02-21 22:55:09 +0000 | [diff] [blame] | 660 | QuantumInfo |
| 661 | *quantum_info; |
| 662 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 663 | QuantumType |
| 664 | quantum_type; |
| 665 | |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 666 | register ssize_t |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 667 | i; |
| 668 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 669 | size_t |
| cristy | 202de44 | 2011-04-24 18:19:07 +0000 | [diff] [blame] | 670 | extent, |
| 671 | samples_per_pixel; |
| 672 | |
| 673 | ssize_t |
| 674 | count, |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 675 | n, |
| cristy | 202de44 | 2011-04-24 18:19:07 +0000 | [diff] [blame] | 676 | row, |
| 677 | y; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 678 | |
| 679 | unsigned char |
| 680 | component_type; |
| 681 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 682 | /* |
| 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); |
| cristy | 9950d57 | 2011-10-01 18:22:35 +0000 | [diff] [blame] | 692 | image=AcquireImage(image_info,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 693 | 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; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 721 | if (dpx.file.ditto_key != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 722 | (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; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 767 | if (dpx.file.encrypt_key != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 768 | (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; |
| cristy | 6310e8d | 2013-11-11 12:52:08 +0000 | [diff] [blame^] | 777 | if (dpx.image.orientation != (unsigned short) ~0) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 778 | (void) FormatImageProperty(image,"dpx:image.orientation","%d", |
| 779 | dpx.image.orientation); |
| 780 | switch (dpx.image.orientation) |
| 781 | { |
| 782 | default: |
| cristy | 202de44 | 2011-04-24 18:19:07 +0000 | [diff] [blame] | 783 | 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; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 791 | } |
| 792 | dpx.image.number_elements=ReadBlobShort(image); |
| 793 | offset+=2; |
| 794 | dpx.image.pixels_per_line=ReadBlobLong(image); |
| 795 | offset+=4; |
| 796 | image->columns=dpx.image.pixels_per_line; |
| 797 | dpx.image.lines_per_element=ReadBlobLong(image); |
| 798 | offset+=4; |
| 799 | image->rows=dpx.image.lines_per_element; |
| 800 | for (i=0; i < 8; i++) |
| 801 | { |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 802 | char |
| 803 | property[MaxTextExtent]; |
| 804 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 805 | dpx.image.image_element[i].data_sign=ReadBlobLong(image); |
| 806 | offset+=4; |
| 807 | dpx.image.image_element[i].low_data=ReadBlobLong(image); |
| 808 | offset+=4; |
| 809 | dpx.image.image_element[i].low_quantity=ReadBlobFloat(image); |
| 810 | offset+=4; |
| 811 | dpx.image.image_element[i].high_data=ReadBlobLong(image); |
| 812 | offset+=4; |
| 813 | dpx.image.image_element[i].high_quantity=ReadBlobFloat(image); |
| 814 | offset+=4; |
| 815 | dpx.image.image_element[i].descriptor=(unsigned char) ReadBlobByte(image); |
| 816 | offset++; |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 817 | dpx.image.image_element[i].transfer_characteristic=(unsigned char) |
| 818 | ReadBlobByte(image); |
| 819 | (void) FormatLocaleString(property,MaxTextExtent, |
| 820 | "dpx:image.element[%lu].transfer-characteristic",(long) i); |
| 821 | (void) FormatImageProperty(image,property,"%s", |
| 822 | GetImageTransferCharacteristic((DPXTransferCharacteristic) |
| 823 | dpx.image.image_element[i].transfer_characteristic)); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 824 | offset++; |
| 825 | dpx.image.image_element[i].colorimetric=(unsigned char) ReadBlobByte(image); |
| 826 | offset++; |
| 827 | dpx.image.image_element[i].bit_size=(unsigned char) ReadBlobByte(image); |
| 828 | offset++; |
| 829 | dpx.image.image_element[i].packing=ReadBlobShort(image); |
| 830 | offset+=2; |
| 831 | dpx.image.image_element[i].encoding=ReadBlobShort(image); |
| 832 | offset+=2; |
| 833 | dpx.image.image_element[i].data_offset=ReadBlobLong(image); |
| 834 | offset+=4; |
| 835 | dpx.image.image_element[i].end_of_line_padding=ReadBlobLong(image); |
| 836 | offset+=4; |
| 837 | dpx.image.image_element[i].end_of_image_padding=ReadBlobLong(image); |
| 838 | offset+=4; |
| 839 | offset+=ReadBlob(image,sizeof(dpx.image.image_element[i].description), |
| 840 | (unsigned char *) dpx.image.image_element[i].description); |
| 841 | } |
| cristy | b2c3f40 | 2012-05-13 18:05:12 +0000 | [diff] [blame] | 842 | SetImageColorspace(image,RGBColorspace,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 843 | offset+=ReadBlob(image,sizeof(dpx.image.reserve),(unsigned char *) |
| 844 | dpx.image.reserve); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 845 | if (dpx.file.image_offset >= 1664U) |
| 846 | { |
| 847 | /* |
| 848 | Read DPX orientation header. |
| 849 | */ |
| 850 | dpx.orientation.x_offset=ReadBlobLong(image); |
| 851 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 852 | if (dpx.orientation.x_offset != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 853 | (void) FormatImageProperty(image,"dpx:orientation.x_offset","%u", |
| 854 | dpx.orientation.x_offset); |
| 855 | dpx.orientation.y_offset=ReadBlobLong(image); |
| 856 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 857 | if (dpx.orientation.y_offset != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 858 | (void) FormatImageProperty(image,"dpx:orientation.y_offset","%u", |
| 859 | dpx.orientation.y_offset); |
| 860 | dpx.orientation.x_center=ReadBlobFloat(image); |
| 861 | offset+=4; |
| 862 | if (IsFloatDefined(dpx.orientation.x_center) != MagickFalse) |
| 863 | (void) FormatImageProperty(image,"dpx:orientation.x_center","%g", |
| 864 | dpx.orientation.x_center); |
| 865 | dpx.orientation.y_center=ReadBlobFloat(image); |
| 866 | offset+=4; |
| 867 | if (IsFloatDefined(dpx.orientation.y_center) != MagickFalse) |
| 868 | (void) FormatImageProperty(image,"dpx:orientation.y_center","%g", |
| 869 | dpx.orientation.y_center); |
| 870 | dpx.orientation.x_size=ReadBlobLong(image); |
| 871 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 872 | if (dpx.orientation.x_size != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 873 | (void) FormatImageProperty(image,"dpx:orientation.x_size","%u", |
| 874 | dpx.orientation.x_size); |
| 875 | dpx.orientation.y_size=ReadBlobLong(image); |
| 876 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 877 | if (dpx.orientation.y_size != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 878 | (void) FormatImageProperty(image,"dpx:orientation.y_size","%u", |
| 879 | dpx.orientation.y_size); |
| 880 | offset+=ReadBlob(image,sizeof(dpx.orientation.filename),(unsigned char *) |
| 881 | dpx.orientation.filename); |
| 882 | if (*dpx.orientation.filename != '\0') |
| 883 | (void) FormatImageProperty(image,"dpx:orientation.filename","%.100s", |
| 884 | dpx.orientation.filename); |
| 885 | offset+=ReadBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *) |
| 886 | dpx.orientation.timestamp); |
| 887 | if (*dpx.orientation.timestamp != '\0') |
| 888 | (void) FormatImageProperty(image,"dpx:orientation.timestamp","%.24s", |
| 889 | dpx.orientation.timestamp); |
| 890 | offset+=ReadBlob(image,sizeof(dpx.orientation.device),(unsigned char *) |
| 891 | dpx.orientation.device); |
| 892 | if (*dpx.orientation.device != '\0') |
| 893 | (void) FormatImageProperty(image,"dpx:orientation.device","%.32s", |
| 894 | dpx.orientation.device); |
| 895 | offset+=ReadBlob(image,sizeof(dpx.orientation.serial),(unsigned char *) |
| 896 | dpx.orientation.serial); |
| 897 | if (*dpx.orientation.serial != '\0') |
| 898 | (void) FormatImageProperty(image,"dpx:orientation.serial","%.32s", |
| 899 | dpx.orientation.serial); |
| 900 | for (i=0; i < 4; i++) |
| 901 | { |
| 902 | dpx.orientation.border[i]=ReadBlobShort(image); |
| 903 | offset+=2; |
| 904 | } |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 905 | if ((dpx.orientation.border[0] != (unsigned short) (~0UL)) && |
| 906 | (dpx.orientation.border[1] != (unsigned short) (~0UL))) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 907 | (void) FormatImageProperty(image,"dpx:orientation.border","%dx%d%+d%+d", dpx.orientation.border[0],dpx.orientation.border[1], |
| 908 | dpx.orientation.border[2],dpx.orientation.border[3]); |
| 909 | for (i=0; i < 2; i++) |
| 910 | { |
| 911 | dpx.orientation.aspect_ratio[i]=ReadBlobLong(image); |
| 912 | offset+=4; |
| 913 | } |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 914 | if ((dpx.orientation.aspect_ratio[0] != ~0UL) && |
| 915 | (dpx.orientation.aspect_ratio[1] != ~0UL)) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 916 | (void) FormatImageProperty(image,"dpx:orientation.aspect_ratio", |
| 917 | "%ux%u",dpx.orientation.aspect_ratio[0], |
| 918 | dpx.orientation.aspect_ratio[1]); |
| 919 | offset+=ReadBlob(image,sizeof(dpx.orientation.reserve),(unsigned char *) |
| 920 | dpx.orientation.reserve); |
| 921 | } |
| 922 | if (dpx.file.image_offset >= 1920U) |
| 923 | { |
| 924 | /* |
| 925 | Read DPX film header. |
| 926 | */ |
| 927 | offset+=ReadBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id); |
| 928 | if (*dpx.film.type != '\0') |
| 929 | (void) FormatImageProperty(image,"dpx:film.id","%.2s",dpx.film.id); |
| 930 | offset+=ReadBlob(image,sizeof(dpx.film.type),(unsigned char *) |
| 931 | dpx.film.type); |
| 932 | if (*dpx.film.type != '\0') |
| 933 | (void) FormatImageProperty(image,"dpx:film.type","%.2s",dpx.film.type); |
| 934 | offset+=ReadBlob(image,sizeof(dpx.film.offset),(unsigned char *) |
| 935 | dpx.film.offset); |
| 936 | if (*dpx.film.offset != '\0') |
| 937 | (void) FormatImageProperty(image,"dpx:film.offset","%.2s", |
| 938 | dpx.film.offset); |
| 939 | offset+=ReadBlob(image,sizeof(dpx.film.prefix),(unsigned char *) |
| 940 | dpx.film.prefix); |
| 941 | if (*dpx.film.prefix != '\0') |
| 942 | (void) FormatImageProperty(image,"dpx:film.prefix","%.6s", |
| 943 | dpx.film.prefix); |
| 944 | offset+=ReadBlob(image,sizeof(dpx.film.count),(unsigned char *) |
| 945 | dpx.film.count); |
| 946 | if (*dpx.film.count != '\0') |
| 947 | (void) FormatImageProperty(image,"dpx:film.count","%.4s", |
| 948 | dpx.film.count); |
| 949 | offset+=ReadBlob(image,sizeof(dpx.film.format),(unsigned char *) |
| 950 | dpx.film.format); |
| 951 | if (*dpx.film.format != '\0') |
| 952 | (void) FormatImageProperty(image,"dpx:film.format","%.4s", |
| 953 | dpx.film.format); |
| 954 | dpx.film.frame_position=ReadBlobLong(image); |
| 955 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 956 | if (dpx.film.frame_position != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 957 | (void) FormatImageProperty(image,"dpx:film.frame_position","%u", |
| 958 | dpx.film.frame_position); |
| 959 | dpx.film.sequence_extent=ReadBlobLong(image); |
| 960 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 961 | if (dpx.film.sequence_extent != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 962 | (void) FormatImageProperty(image,"dpx:film.sequence_extent","%u", |
| 963 | dpx.film.sequence_extent); |
| 964 | dpx.film.held_count=ReadBlobLong(image); |
| 965 | offset+=4; |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 966 | if (dpx.film.held_count != ~0UL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 967 | (void) FormatImageProperty(image,"dpx:film.held_count","%u", |
| 968 | dpx.film.held_count); |
| 969 | dpx.film.frame_rate=ReadBlobFloat(image); |
| 970 | offset+=4; |
| 971 | if (IsFloatDefined(dpx.film.frame_rate) != MagickFalse) |
| 972 | (void) FormatImageProperty(image,"dpx:film.frame_rate","%g", |
| 973 | dpx.film.frame_rate); |
| 974 | dpx.film.shutter_angle=ReadBlobFloat(image); |
| 975 | offset+=4; |
| 976 | if (IsFloatDefined(dpx.film.shutter_angle) != MagickFalse) |
| 977 | (void) FormatImageProperty(image,"dpx:film.shutter_angle","%g", |
| 978 | dpx.film.shutter_angle); |
| 979 | offset+=ReadBlob(image,sizeof(dpx.film.frame_id),(unsigned char *) |
| 980 | dpx.film.frame_id); |
| 981 | if (*dpx.film.frame_id != '\0') |
| 982 | (void) FormatImageProperty(image,"dpx:film.frame_id","%.32s", |
| 983 | dpx.film.frame_id); |
| 984 | offset+=ReadBlob(image,sizeof(dpx.film.slate),(unsigned char *) |
| 985 | dpx.film.slate); |
| 986 | if (*dpx.film.slate != '\0') |
| 987 | (void) FormatImageProperty(image,"dpx:film.slate","%.100s", |
| 988 | dpx.film.slate); |
| 989 | offset+=ReadBlob(image,sizeof(dpx.film.reserve),(unsigned char *) |
| 990 | dpx.film.reserve); |
| 991 | } |
| 992 | if (dpx.file.image_offset >= 2048U) |
| 993 | { |
| 994 | /* |
| 995 | Read DPX television header. |
| 996 | */ |
| 997 | dpx.television.time_code=(unsigned int) ReadBlobLong(image); |
| 998 | offset+=4; |
| 999 | TimeCodeToString(dpx.television.time_code,value); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1000 | (void) SetImageProperty(image,"dpx:television.time.code",value,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1001 | dpx.television.user_bits=(unsigned int) ReadBlobLong(image); |
| 1002 | offset+=4; |
| 1003 | TimeCodeToString(dpx.television.user_bits,value); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1004 | (void) SetImageProperty(image,"dpx:television.user.bits",value,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1005 | dpx.television.interlace=(unsigned char) ReadBlobByte(image); |
| 1006 | offset++; |
| 1007 | if (dpx.television.interlace != 0) |
| cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 1008 | (void) FormatImageProperty(image,"dpx:television.interlace","%.20g", |
| 1009 | (double) dpx.television.interlace); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1010 | dpx.television.field_number=(unsigned char) ReadBlobByte(image); |
| 1011 | offset++; |
| 1012 | if (dpx.television.field_number != 0) |
| cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 1013 | (void) FormatImageProperty(image,"dpx:television.field_number","%.20g", |
| 1014 | (double) dpx.television.field_number); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1015 | dpx.television.video_signal=(unsigned char) ReadBlobByte(image); |
| 1016 | offset++; |
| 1017 | if (dpx.television.video_signal != 0) |
| cristy | e8c25f9 | 2010-06-03 00:53:06 +0000 | [diff] [blame] | 1018 | (void) FormatImageProperty(image,"dpx:television.video_signal","%.20g", |
| 1019 | (double) dpx.television.video_signal); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1020 | dpx.television.padding=(unsigned char) ReadBlobByte(image); |
| 1021 | offset++; |
| 1022 | if (dpx.television.padding != 0) |
| 1023 | (void) FormatImageProperty(image,"dpx:television.padding","%d", |
| 1024 | dpx.television.padding); |
| 1025 | dpx.television.horizontal_sample_rate=ReadBlobFloat(image); |
| 1026 | offset+=4; |
| 1027 | if (IsFloatDefined(dpx.television.horizontal_sample_rate) != MagickFalse) |
| 1028 | (void) FormatImageProperty(image, |
| 1029 | "dpx:television.horizontal_sample_rate","%g", |
| 1030 | dpx.television.horizontal_sample_rate); |
| 1031 | dpx.television.vertical_sample_rate=ReadBlobFloat(image); |
| 1032 | offset+=4; |
| 1033 | if (IsFloatDefined(dpx.television.vertical_sample_rate) != MagickFalse) |
| 1034 | (void) FormatImageProperty(image,"dpx:television.vertical_sample_rate", |
| 1035 | "%g",dpx.television.vertical_sample_rate); |
| 1036 | dpx.television.frame_rate=ReadBlobFloat(image); |
| 1037 | offset+=4; |
| 1038 | if (IsFloatDefined(dpx.television.frame_rate) != MagickFalse) |
| 1039 | (void) FormatImageProperty(image,"dpx:television.frame_rate","%g", |
| 1040 | dpx.television.frame_rate); |
| 1041 | dpx.television.time_offset=ReadBlobFloat(image); |
| 1042 | offset+=4; |
| 1043 | if (IsFloatDefined(dpx.television.time_offset) != MagickFalse) |
| 1044 | (void) FormatImageProperty(image,"dpx:television.time_offset","%g", |
| 1045 | dpx.television.time_offset); |
| 1046 | dpx.television.gamma=ReadBlobFloat(image); |
| 1047 | offset+=4; |
| 1048 | if (IsFloatDefined(dpx.television.gamma) != MagickFalse) |
| 1049 | (void) FormatImageProperty(image,"dpx:television.gamma","%g", |
| 1050 | dpx.television.gamma); |
| 1051 | dpx.television.black_level=ReadBlobFloat(image); |
| 1052 | offset+=4; |
| 1053 | if (IsFloatDefined(dpx.television.black_level) != MagickFalse) |
| 1054 | (void) FormatImageProperty(image,"dpx:television.black_level","%g", |
| 1055 | dpx.television.black_level); |
| 1056 | dpx.television.black_gain=ReadBlobFloat(image); |
| 1057 | offset+=4; |
| 1058 | if (IsFloatDefined(dpx.television.black_gain) != MagickFalse) |
| 1059 | (void) FormatImageProperty(image,"dpx:television.black_gain","%g", |
| 1060 | dpx.television.black_gain); |
| 1061 | dpx.television.break_point=ReadBlobFloat(image); |
| 1062 | offset+=4; |
| 1063 | if (IsFloatDefined(dpx.television.break_point) != MagickFalse) |
| 1064 | (void) FormatImageProperty(image,"dpx:television.break_point","%g", |
| 1065 | dpx.television.break_point); |
| 1066 | dpx.television.white_level=ReadBlobFloat(image); |
| 1067 | offset+=4; |
| 1068 | if (IsFloatDefined(dpx.television.white_level) != MagickFalse) |
| 1069 | (void) FormatImageProperty(image,"dpx:television.white_level","%g", |
| 1070 | dpx.television.white_level); |
| 1071 | dpx.television.integration_times=ReadBlobFloat(image); |
| 1072 | offset+=4; |
| 1073 | if (IsFloatDefined(dpx.television.integration_times) != MagickFalse) |
| 1074 | (void) FormatImageProperty(image,"dpx:television.integration_times", |
| 1075 | "%g",dpx.television.integration_times); |
| 1076 | offset+=ReadBlob(image,sizeof(dpx.television.reserve),(unsigned char *) |
| 1077 | dpx.television.reserve); |
| 1078 | } |
| 1079 | if (dpx.file.image_offset > 2080U) |
| 1080 | { |
| 1081 | /* |
| 1082 | Read DPX user header. |
| 1083 | */ |
| 1084 | offset+=ReadBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id); |
| 1085 | if (*dpx.user.id != '\0') |
| 1086 | (void) FormatImageProperty(image,"dpx:user.id","%.32s",dpx.user.id); |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 1087 | if ((dpx.file.user_size != ~0UL) && |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1088 | ((size_t) dpx.file.user_size > sizeof(dpx.user.id))) |
| 1089 | { |
| 1090 | StringInfo |
| 1091 | *profile; |
| 1092 | |
| cristy | 6039529 | 2011-09-01 13:25:56 +0000 | [diff] [blame] | 1093 | profile=BlobToStringInfo((const void *) NULL, |
| 1094 | dpx.file.user_size-sizeof(dpx.user.id)); |
| 1095 | if (profile == (StringInfo *) NULL) |
| 1096 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1097 | offset+=ReadBlob(image,GetStringInfoLength(profile), |
| 1098 | GetStringInfoDatum(profile)); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1099 | (void) SetImageProfile(image,"dpx",profile,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1100 | profile=DestroyStringInfo(profile); |
| 1101 | } |
| 1102 | } |
| cristy | 811f517 | 2010-12-29 17:38:08 +0000 | [diff] [blame] | 1103 | for ( ; offset < (MagickOffsetType) dpx.file.image_offset; offset++) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1104 | (void) ReadBlobByte(image); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1105 | if (image_info->ping != MagickFalse) |
| 1106 | { |
| 1107 | (void) CloseBlob(image); |
| 1108 | return(GetFirstImageInList(image)); |
| 1109 | } |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1110 | for (n=0; n < (ssize_t) dpx.image.number_elements; n++) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1111 | { |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1112 | /* |
| 1113 | Convert DPX raster image to pixel packets. |
| 1114 | */ |
| cristy | 3a5987c | 2013-11-07 14:18:46 +0000 | [diff] [blame] | 1115 | if ((dpx.image.image_element[n].data_offset != (unsigned int) (~0UL)) && |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1116 | (dpx.image.image_element[n].data_offset != 0U)) |
| cristy | ff024b4 | 2010-02-21 22:55:09 +0000 | [diff] [blame] | 1117 | { |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1118 | MagickOffsetType |
| 1119 | data_offset; |
| 1120 | |
| 1121 | data_offset=(MagickOffsetType) dpx.image.image_element[n].data_offset; |
| 1122 | if (data_offset < offset) |
| 1123 | offset=SeekBlob(image,data_offset,SEEK_SET); |
| 1124 | else |
| 1125 | for ( ; offset < data_offset; offset++) |
| 1126 | (void) ReadBlobByte(image); |
| 1127 | if (offset != data_offset) |
| 1128 | ThrowReaderException(CorruptImageError,"UnableToReadImageData"); |
| 1129 | } |
| cristy | ea48515 | 2012-10-03 11:48:50 +0000 | [diff] [blame] | 1130 | SetPrimaryChromaticity((DPXColorimetric) |
| 1131 | dpx.image.image_element[n].colorimetric,&image->chromaticity); |
| 1132 | image->depth=dpx.image.image_element[n].bit_size; |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1133 | samples_per_pixel=1; |
| 1134 | quantum_type=GrayQuantum; |
| cristy | ea48515 | 2012-10-03 11:48:50 +0000 | [diff] [blame] | 1135 | component_type=dpx.image.image_element[n].descriptor; |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1136 | switch (component_type) |
| 1137 | { |
| 1138 | case CbYCrY422ComponentType: |
| 1139 | { |
| 1140 | samples_per_pixel=2; |
| 1141 | quantum_type=CbYCrYQuantum; |
| 1142 | break; |
| cristy | ff024b4 | 2010-02-21 22:55:09 +0000 | [diff] [blame] | 1143 | } |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1144 | case CbYACrYA4224ComponentType: |
| 1145 | case CbYCr444ComponentType: |
| 1146 | { |
| 1147 | samples_per_pixel=3; |
| 1148 | quantum_type=CbYCrQuantum; |
| 1149 | break; |
| 1150 | } |
| 1151 | case RGBComponentType: |
| 1152 | { |
| 1153 | samples_per_pixel=3; |
| 1154 | quantum_type=RGBQuantum; |
| 1155 | break; |
| 1156 | } |
| 1157 | case ABGRComponentType: |
| 1158 | case RGBAComponentType: |
| 1159 | { |
| 1160 | image->alpha_trait=BlendPixelTrait; |
| 1161 | samples_per_pixel=4; |
| 1162 | quantum_type=RGBAQuantum; |
| 1163 | break; |
| 1164 | } |
| 1165 | default: |
| 1166 | break; |
| 1167 | } |
| 1168 | switch (component_type) |
| 1169 | { |
| 1170 | case CbYCrY422ComponentType: |
| 1171 | case CbYACrYA4224ComponentType: |
| 1172 | case CbYCr444ComponentType: |
| 1173 | { |
| 1174 | SetImageColorspace(image,Rec709YCbCrColorspace,exception); |
| 1175 | break; |
| 1176 | } |
| 1177 | case LumaComponentType: |
| 1178 | { |
| cristy | ea48515 | 2012-10-03 11:48:50 +0000 | [diff] [blame] | 1179 | SetImageColorspace(image,GRAYColorspace,exception); |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1180 | break; |
| 1181 | } |
| 1182 | default: |
| 1183 | { |
| 1184 | SetImageColorspace(image,sRGBColorspace,exception); |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 1185 | if (dpx.image.image_element[n].transfer_characteristic == LogarithmicColorimetric) |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1186 | SetImageColorspace(image,LogColorspace,exception); |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 1187 | if (dpx.image.image_element[n].transfer_characteristic == PrintingDensityColorimetric) |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1188 | SetImageColorspace(image,LogColorspace,exception); |
| 1189 | break; |
| 1190 | } |
| 1191 | } |
| 1192 | extent=GetBytesPerRow(image->columns,samples_per_pixel,image->depth, |
| 1193 | dpx.image.image_element[n].packing == 0 ? MagickFalse : MagickTrue); |
| 1194 | /* |
| 1195 | DPX any-bit pixel format. |
| 1196 | */ |
| 1197 | status=MagickTrue; |
| 1198 | row=0; |
| 1199 | quantum_info=AcquireQuantumInfo(image_info,image); |
| 1200 | if (quantum_info == (QuantumInfo *) NULL) |
| 1201 | ThrowReaderException(ResourceLimitError,"MemoryAllocationFailed"); |
| 1202 | SetQuantumQuantum(quantum_info,32); |
| 1203 | SetQuantumPack(quantum_info,dpx.image.image_element[n].packing == 0 ? |
| 1204 | MagickTrue : MagickFalse); |
| 1205 | for (y=0; y < (ssize_t) image->rows; y++) |
| 1206 | { |
| 1207 | MagickBooleanType |
| 1208 | sync; |
| 1209 | |
| 1210 | register Quantum |
| 1211 | *q; |
| 1212 | |
| 1213 | size_t |
| 1214 | length; |
| 1215 | |
| 1216 | ssize_t |
| 1217 | count, |
| 1218 | offset; |
| 1219 | |
| 1220 | unsigned char |
| 1221 | *pixels; |
| 1222 | |
| 1223 | if (status == MagickFalse) |
| 1224 | continue; |
| 1225 | pixels=GetQuantumPixels(quantum_info); |
| 1226 | { |
| 1227 | count=ReadBlob(image,extent,pixels); |
| 1228 | if ((image->progress_monitor != (MagickProgressMonitor) NULL) && |
| 1229 | (image->previous == (Image *) NULL)) |
| 1230 | { |
| 1231 | MagickBooleanType |
| 1232 | proceed; |
| 1233 | |
| 1234 | proceed=SetImageProgress(image,LoadImageTag,(MagickOffsetType) row, |
| 1235 | image->rows); |
| 1236 | if (proceed == MagickFalse) |
| 1237 | status=MagickFalse; |
| 1238 | } |
| 1239 | offset=row++; |
| 1240 | } |
| 1241 | if (count != (ssize_t) extent) |
| 1242 | status=MagickFalse; |
| 1243 | q=QueueAuthenticPixels(image,0,offset,image->columns,1,exception); |
| 1244 | if (q == (Quantum *) NULL) |
| 1245 | { |
| 1246 | status=MagickFalse; |
| 1247 | continue; |
| 1248 | } |
| 1249 | length=ImportQuantumPixels(image,(CacheView *) NULL,quantum_info, |
| 1250 | quantum_type,pixels,exception); |
| 1251 | (void) length; |
| 1252 | sync=SyncAuthenticPixels(image,exception); |
| 1253 | if (sync == MagickFalse) |
| 1254 | status=MagickFalse; |
| 1255 | } |
| 1256 | quantum_info=DestroyQuantumInfo(quantum_info); |
| 1257 | if (status == MagickFalse) |
| 1258 | ThrowReaderException(CorruptImageError,"UnableToReadImageData"); |
| 1259 | SetQuantumImageType(image,quantum_type); |
| 1260 | if (EOFBlob(image) != MagickFalse) |
| 1261 | ThrowFileException(exception,CorruptImageError,"UnexpectedEndOfFile", |
| 1262 | image->filename); |
| 1263 | if ((i+1) < (ssize_t) dpx.image.number_elements) |
| 1264 | { |
| 1265 | /* |
| 1266 | Allocate next image structure. |
| 1267 | */ |
| 1268 | AcquireNextImage(image_info,image,exception); |
| 1269 | if (GetNextImageInList(image) == (Image *) NULL) |
| 1270 | { |
| 1271 | image=DestroyImageList(image); |
| 1272 | return((Image *) NULL); |
| 1273 | } |
| 1274 | image=SyncNextImageInList(image); |
| 1275 | status=SetImageProgress(image,LoadImagesTag,TellBlob(image), |
| 1276 | GetBlobSize(image)); |
| 1277 | if (status == MagickFalse) |
| 1278 | break; |
| 1279 | } |
| cristy | ff024b4 | 2010-02-21 22:55:09 +0000 | [diff] [blame] | 1280 | } |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1281 | (void) CloseBlob(image); |
| 1282 | return(GetFirstImageInList(image)); |
| 1283 | } |
| 1284 | |
| 1285 | /* |
| 1286 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1287 | % % |
| 1288 | % % |
| 1289 | % % |
| 1290 | % R e g i s t e r D P X I m a g e % |
| 1291 | % % |
| 1292 | % % |
| 1293 | % % |
| 1294 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1295 | % |
| 1296 | % RegisterDPXImage() adds properties for the DPX image format to |
| 1297 | % the list of supported formats. The properties include the image format |
| 1298 | % tag, a method to read and/or write the format, whether the format |
| 1299 | % supports the saving of more than one frame to the same file or blob, |
| 1300 | % whether the format supports native in-memory I/O, and a brief |
| 1301 | % description of the format. |
| 1302 | % |
| 1303 | % The format of the RegisterDPXImage method is: |
| 1304 | % |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1305 | % size_t RegisterDPXImage(void) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1306 | % |
| 1307 | */ |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1308 | ModuleExport size_t RegisterDPXImage(void) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1309 | { |
| 1310 | MagickInfo |
| 1311 | *entry; |
| 1312 | |
| 1313 | static const char |
| 1314 | *DPXNote = |
| 1315 | { |
| 1316 | "Digital Moving Picture Exchange Bitmap, Version 2.0.\n" |
| 1317 | "See SMPTE 268M-2003 specification at http://www.smtpe.org\n" |
| 1318 | }; |
| 1319 | |
| 1320 | entry=SetMagickInfo("DPX"); |
| 1321 | entry->decoder=(DecodeImageHandler *) ReadDPXImage; |
| 1322 | entry->encoder=(EncodeImageHandler *) WriteDPXImage; |
| 1323 | entry->magick=(IsImageFormatHandler *) IsDPX; |
| 1324 | entry->adjoin=MagickFalse; |
| cristy | 04ea8a0 | 2012-09-30 15:23:28 +0000 | [diff] [blame] | 1325 | entry->seekable_stream=MagickTrue; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1326 | entry->description=ConstantString("SMPTE 268M-2003 (DPX 2.0)"); |
| 1327 | entry->note=ConstantString(DPXNote); |
| 1328 | entry->module=ConstantString("DPX"); |
| 1329 | (void) RegisterMagickInfo(entry); |
| 1330 | return(MagickImageCoderSignature); |
| 1331 | } |
| 1332 | |
| 1333 | /* |
| 1334 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1335 | % % |
| 1336 | % % |
| 1337 | % % |
| 1338 | % U n r e g i s t e r D P X I m a g e % |
| 1339 | % % |
| 1340 | % % |
| 1341 | % % |
| 1342 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1343 | % |
| 1344 | % UnregisterDPXImage() removes format registrations made by the |
| 1345 | % DPX module from the list of supported formats. |
| 1346 | % |
| 1347 | % The format of the UnregisterDPXImage method is: |
| 1348 | % |
| 1349 | % UnregisterDPXImage(void) |
| 1350 | % |
| 1351 | */ |
| 1352 | ModuleExport void UnregisterDPXImage(void) |
| 1353 | { |
| 1354 | (void) UnregisterMagickInfo("DPX"); |
| 1355 | } |
| 1356 | |
| 1357 | /* |
| 1358 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1359 | % % |
| 1360 | % % |
| 1361 | % % |
| 1362 | % W r i t e D P X I m a g e % |
| 1363 | % % |
| 1364 | % % |
| 1365 | % % |
| 1366 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 1367 | % |
| 1368 | % WriteDPXImage() writes an image in DPX encoded image format. |
| 1369 | % |
| 1370 | % The format of the WriteDPXImage method is: |
| 1371 | % |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1372 | % MagickBooleanType WriteDPXImage(const ImageInfo *image_info, |
| 1373 | % Image *image,ExceptionInfo *exception) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1374 | % |
| 1375 | % A description of each parameter follows. |
| 1376 | % |
| 1377 | % o image_info: the image info. |
| 1378 | % |
| 1379 | % o image: The image. |
| 1380 | % |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1381 | % o exception: return any errors or warnings in this structure. |
| 1382 | % |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1383 | */ |
| 1384 | |
| 1385 | static inline const char *GetDPXProperty(const ImageInfo *image_info, |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1386 | const Image *image,const char *property,ExceptionInfo *exception) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1387 | { |
| 1388 | const char |
| 1389 | *value; |
| 1390 | |
| cristy | 092ec8d | 2013-04-26 13:46:22 +0000 | [diff] [blame] | 1391 | value=GetImageOption(image_info,property); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1392 | if (value != (const char *) NULL) |
| 1393 | return(value); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1394 | return(GetImageProperty(image,property,exception)); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1395 | } |
| 1396 | |
| 1397 | static unsigned int StringToTimeCode(const char *key) |
| 1398 | { |
| 1399 | char |
| 1400 | buffer[2]; |
| 1401 | |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1402 | register ssize_t |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1403 | i; |
| 1404 | |
| 1405 | unsigned int |
| 1406 | shift, |
| 1407 | value; |
| 1408 | |
| 1409 | value=0; |
| 1410 | shift=28; |
| 1411 | buffer[1]='\0'; |
| 1412 | for (i=0; (*key != 0) && (i < 11); i++) |
| 1413 | { |
| 1414 | if (isxdigit((int) ((unsigned char) *key)) == 0) |
| 1415 | { |
| 1416 | key++; |
| 1417 | continue; |
| 1418 | } |
| 1419 | buffer[0]=(*key++); |
| 1420 | value|=(unsigned int) ((strtol(buffer,(char **) NULL,16)) << shift); |
| 1421 | shift-=4; |
| 1422 | } |
| 1423 | return(value); |
| 1424 | } |
| 1425 | |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1426 | static MagickBooleanType WriteDPXImage(const ImageInfo *image_info,Image *image, |
| 1427 | ExceptionInfo *exception) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1428 | { |
| 1429 | const char |
| 1430 | *value; |
| 1431 | |
| 1432 | const StringInfo |
| 1433 | *profile; |
| 1434 | |
| 1435 | DPXInfo |
| 1436 | dpx; |
| 1437 | |
| cristy | bccc4f4 | 2011-11-24 17:57:52 +0000 | [diff] [blame] | 1438 | GeometryInfo |
| 1439 | geometry_info; |
| 1440 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1441 | MagickBooleanType |
| 1442 | status; |
| 1443 | |
| 1444 | MagickOffsetType |
| 1445 | offset; |
| 1446 | |
| 1447 | MagickStatusType |
| 1448 | flags; |
| 1449 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1450 | QuantumInfo |
| 1451 | *quantum_info; |
| 1452 | |
| 1453 | QuantumType |
| 1454 | quantum_type; |
| 1455 | |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1456 | register const Quantum |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1457 | *p; |
| 1458 | |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1459 | register ssize_t |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1460 | i; |
| 1461 | |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1462 | size_t |
| 1463 | extent; |
| 1464 | |
| cristy | 202de44 | 2011-04-24 18:19:07 +0000 | [diff] [blame] | 1465 | ssize_t |
| 1466 | count, |
| 1467 | horizontal_factor, |
| 1468 | vertical_factor, |
| 1469 | y; |
| 1470 | |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1471 | time_t |
| 1472 | seconds; |
| 1473 | |
| 1474 | unsigned char |
| 1475 | *pixels; |
| 1476 | |
| 1477 | /* |
| 1478 | Open output image file. |
| 1479 | */ |
| 1480 | assert(image_info != (const ImageInfo *) NULL); |
| 1481 | assert(image_info->signature == MagickSignature); |
| 1482 | assert(image != (Image *) NULL); |
| 1483 | assert(image->signature == MagickSignature); |
| 1484 | if (image->debug != MagickFalse) |
| 1485 | (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",image->filename); |
| 1486 | horizontal_factor=4; |
| 1487 | vertical_factor=4; |
| 1488 | if (image_info->sampling_factor != (char *) NULL) |
| 1489 | { |
| 1490 | GeometryInfo |
| 1491 | geometry_info; |
| 1492 | |
| 1493 | MagickStatusType |
| 1494 | flags; |
| 1495 | |
| 1496 | flags=ParseGeometry(image_info->sampling_factor,&geometry_info); |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1497 | horizontal_factor=(ssize_t) geometry_info.rho; |
| 1498 | vertical_factor=(ssize_t) geometry_info.sigma; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1499 | if ((flags & SigmaValue) == 0) |
| 1500 | vertical_factor=horizontal_factor; |
| 1501 | if ((horizontal_factor != 1) && (horizontal_factor != 2) && |
| 1502 | (horizontal_factor != 4) && (vertical_factor != 1) && |
| 1503 | (vertical_factor != 2) && (vertical_factor != 4)) |
| 1504 | ThrowWriterException(CorruptImageError,"UnexpectedSamplingFactor"); |
| 1505 | } |
| 1506 | if ((image->colorspace == YCbCrColorspace) && |
| 1507 | ((horizontal_factor == 2) || (vertical_factor == 2))) |
| 1508 | if ((image->columns % 2) != 0) |
| 1509 | image->columns++; |
| cristy | 3a37efd | 2011-08-28 20:31:03 +0000 | [diff] [blame] | 1510 | assert(exception != (ExceptionInfo *) NULL); |
| 1511 | assert(exception->signature == MagickSignature); |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1512 | status=OpenBlob(image_info,image,WriteBinaryBlobMode,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1513 | if (status == MagickFalse) |
| 1514 | return(status); |
| 1515 | /* |
| 1516 | Write file header. |
| 1517 | */ |
| 1518 | (void) ResetMagickMemory(&dpx,0,sizeof(dpx)); |
| 1519 | offset=0; |
| 1520 | dpx.file.magic=0x53445058U; |
| 1521 | offset+=WriteBlobLong(image,dpx.file.magic); |
| 1522 | dpx.file.image_offset=0x2000U; |
| cristy | 61047b6 | 2010-05-22 02:15:20 +0000 | [diff] [blame] | 1523 | profile=GetImageProfile(image,"dpx"); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1524 | if (profile != (StringInfo *) NULL) |
| 1525 | { |
| cristy | 61047b6 | 2010-05-22 02:15:20 +0000 | [diff] [blame] | 1526 | if (GetStringInfoLength(profile) > 1048576) |
| 1527 | ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit"); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1528 | dpx.file.image_offset+=(unsigned int) GetStringInfoLength(profile); |
| 1529 | dpx.file.image_offset=(((dpx.file.image_offset+0x2000-1)/0x2000)*0x2000); |
| 1530 | } |
| 1531 | offset+=WriteBlobLong(image,dpx.file.image_offset); |
| 1532 | (void) strncpy(dpx.file.version,"V2.0",sizeof(dpx.file.version)); |
| 1533 | offset+=WriteBlob(image,8,(unsigned char *) &dpx.file.version); |
| 1534 | dpx.file.file_size=(unsigned int) (4U*image->columns*image->rows+ |
| 1535 | dpx.file.image_offset); |
| 1536 | offset+=WriteBlobLong(image,dpx.file.file_size); |
| 1537 | dpx.file.ditto_key=1U; /* new frame */ |
| 1538 | offset+=WriteBlobLong(image,dpx.file.ditto_key); |
| 1539 | dpx.file.generic_size=0x00000680U; |
| 1540 | offset+=WriteBlobLong(image,dpx.file.generic_size); |
| 1541 | dpx.file.industry_size=0x00000180U; |
| 1542 | offset+=WriteBlobLong(image,dpx.file.industry_size); |
| 1543 | dpx.file.user_size=0; |
| 1544 | if (profile != (StringInfo *) NULL) |
| 1545 | { |
| 1546 | dpx.file.user_size+=(unsigned int) GetStringInfoLength(profile); |
| 1547 | dpx.file.user_size=(((dpx.file.user_size+0x2000-1)/0x2000)*0x2000); |
| 1548 | } |
| 1549 | offset+=WriteBlobLong(image,dpx.file.user_size); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1550 | value=GetDPXProperty(image_info,image,"dpx:file.filename",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1551 | if (value != (const char *) NULL) |
| 1552 | (void) strncpy(dpx.file.filename,value,sizeof(dpx.file.filename)); |
| 1553 | offset+=WriteBlob(image,sizeof(dpx.file.filename),(unsigned char *) |
| 1554 | dpx.file.filename); |
| 1555 | seconds=time((time_t *) NULL); |
| 1556 | (void) FormatMagickTime(seconds,sizeof(dpx.file.timestamp), |
| 1557 | dpx.file.timestamp); |
| 1558 | offset+=WriteBlob(image,sizeof(dpx.file.timestamp),(unsigned char *) |
| 1559 | dpx.file.timestamp); |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1560 | (void) strncpy(dpx.file.creator,GetMagickVersion((size_t *) NULL), |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1561 | sizeof(dpx.file.creator)); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1562 | value=GetDPXProperty(image_info,image,"dpx:file.creator",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1563 | if (value != (const char *) NULL) |
| 1564 | (void) strncpy(dpx.file.creator,value,sizeof(dpx.file.creator)); |
| 1565 | offset+=WriteBlob(image,sizeof(dpx.file.creator),(unsigned char *) |
| 1566 | dpx.file.creator); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1567 | value=GetDPXProperty(image_info,image,"dpx:file.project",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1568 | if (value != (const char *) NULL) |
| 1569 | (void) strncpy(dpx.file.project,value,sizeof(dpx.file.project)); |
| 1570 | offset+=WriteBlob(image,sizeof(dpx.file.project),(unsigned char *) |
| 1571 | dpx.file.project); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1572 | value=GetDPXProperty(image_info,image,"dpx:file.copyright",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1573 | if (value != (const char *) NULL) |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1574 | (void) strncpy(dpx.file.copyright,value,sizeof(dpx.file.copyright)); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1575 | offset+=WriteBlob(image,sizeof(dpx.file.copyright),(unsigned char *) |
| 1576 | dpx.file.copyright); |
| cristy | 466a68c | 2013-11-08 15:13:21 +0000 | [diff] [blame] | 1577 | dpx.file.encrypt_key=(~0U); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1578 | offset+=WriteBlobLong(image,dpx.file.encrypt_key); |
| 1579 | offset+=WriteBlob(image,sizeof(dpx.file.reserve),(unsigned char *) |
| 1580 | dpx.file.reserve); |
| 1581 | /* |
| 1582 | Write image header. |
| 1583 | */ |
| cristy | e782058 | 2013-01-01 23:42:55 +0000 | [diff] [blame] | 1584 | switch (image->orientation) |
| 1585 | { |
| 1586 | default: |
| 1587 | case TopLeftOrientation: dpx.image.orientation=0; break; |
| 1588 | case TopRightOrientation: dpx.image.orientation=1; break; |
| 1589 | case BottomLeftOrientation: dpx.image.orientation=2; break; |
| 1590 | case BottomRightOrientation: dpx.image.orientation=3; break; |
| 1591 | case LeftTopOrientation: dpx.image.orientation=4; break; |
| 1592 | case RightTopOrientation: dpx.image.orientation=5; break; |
| 1593 | case LeftBottomOrientation: dpx.image.orientation=6; break; |
| 1594 | case RightBottomOrientation: dpx.image.orientation=7; break; |
| 1595 | } |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1596 | offset+=WriteBlobShort(image,dpx.image.orientation); |
| 1597 | dpx.image.number_elements=1; |
| 1598 | offset+=WriteBlobShort(image,dpx.image.number_elements); |
| 1599 | if ((image->columns != (unsigned int) image->columns) || |
| 1600 | (image->rows != (unsigned int) image->rows)) |
| 1601 | ThrowWriterException(ImageError,"WidthOrHeightExceedsLimit"); |
| 1602 | offset+=WriteBlobLong(image,(unsigned int) image->columns); |
| 1603 | offset+=WriteBlobLong(image,(unsigned int) image->rows); |
| 1604 | for (i=0; i < 8; i++) |
| 1605 | { |
| 1606 | dpx.image.image_element[i].data_sign=0U; |
| 1607 | offset+=WriteBlobLong(image,dpx.image.image_element[i].data_sign); |
| 1608 | dpx.image.image_element[i].low_data=0U; |
| 1609 | offset+=WriteBlobLong(image,dpx.image.image_element[i].low_data); |
| 1610 | dpx.image.image_element[i].low_quantity=0.0f; |
| 1611 | offset+=WriteBlobFloat(image,dpx.image.image_element[i].low_quantity); |
| 1612 | dpx.image.image_element[i].high_data=0U; |
| 1613 | offset+=WriteBlobLong(image,dpx.image.image_element[i].high_data); |
| 1614 | dpx.image.image_element[i].high_quantity=0.0f; |
| 1615 | offset+=WriteBlobFloat(image,dpx.image.image_element[i].high_quantity); |
| 1616 | dpx.image.image_element[i].descriptor=0; |
| 1617 | if (i == 0) |
| 1618 | switch (image->colorspace) |
| 1619 | { |
| 1620 | case Rec601YCbCrColorspace: |
| 1621 | case Rec709YCbCrColorspace: |
| 1622 | case YCbCrColorspace: |
| 1623 | { |
| 1624 | dpx.image.image_element[i].descriptor=CbYCr444ComponentType; |
| cristy | 8a46d82 | 2012-08-28 23:32:39 +0000 | [diff] [blame] | 1625 | if (image->alpha_trait == BlendPixelTrait) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1626 | dpx.image.image_element[i].descriptor=CbYCrA4444ComponentType; |
| 1627 | break; |
| 1628 | } |
| 1629 | default: |
| 1630 | { |
| 1631 | dpx.image.image_element[i].descriptor=RGBComponentType; |
| cristy | 8a46d82 | 2012-08-28 23:32:39 +0000 | [diff] [blame] | 1632 | if (image->alpha_trait == BlendPixelTrait) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1633 | dpx.image.image_element[i].descriptor=RGBAComponentType; |
| cristy | f59a892 | 2010-02-28 19:51:23 +0000 | [diff] [blame] | 1634 | if ((image_info->type != TrueColorType) && |
| cristy | 8a46d82 | 2012-08-28 23:32:39 +0000 | [diff] [blame] | 1635 | (image->alpha_trait != BlendPixelTrait) && |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1636 | (IsImageGray(image,exception) != MagickFalse)) |
| cristy | caac294 | 2009-10-01 13:36:18 +0000 | [diff] [blame] | 1637 | dpx.image.image_element[i].descriptor=LumaComponentType; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1638 | break; |
| 1639 | } |
| 1640 | } |
| 1641 | offset+=WriteBlobByte(image,dpx.image.image_element[i].descriptor); |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 1642 | dpx.image.image_element[i].transfer_characteristic=0; |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1643 | if (image->colorspace == LogColorspace) |
| cristy | c7f92ea | 2013-01-10 19:59:00 +0000 | [diff] [blame] | 1644 | dpx.image.image_element[0].transfer_characteristic= |
| 1645 | PrintingDensityColorimetric; |
| 1646 | offset+=WriteBlobByte(image, |
| 1647 | dpx.image.image_element[i].transfer_characteristic); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1648 | dpx.image.image_element[i].colorimetric=0; |
| 1649 | offset+=WriteBlobByte(image,dpx.image.image_element[i].colorimetric); |
| 1650 | dpx.image.image_element[i].bit_size=0; |
| 1651 | if (i == 0) |
| 1652 | dpx.image.image_element[i].bit_size=(unsigned char) image->depth; |
| 1653 | offset+=WriteBlobByte(image,dpx.image.image_element[i].bit_size); |
| 1654 | dpx.image.image_element[i].packing=0; |
| 1655 | if ((image->depth == 10) || (image->depth == 12)) |
| 1656 | dpx.image.image_element[i].packing=1; |
| 1657 | offset+=WriteBlobShort(image,dpx.image.image_element[i].packing); |
| 1658 | dpx.image.image_element[i].encoding=0; |
| 1659 | offset+=WriteBlobShort(image,dpx.image.image_element[i].encoding); |
| 1660 | dpx.image.image_element[i].data_offset=0U; |
| 1661 | if (i == 0) |
| 1662 | dpx.image.image_element[i].data_offset=dpx.file.image_offset; |
| 1663 | offset+=WriteBlobLong(image,dpx.image.image_element[i].data_offset); |
| 1664 | dpx.image.image_element[i].end_of_line_padding=0U; |
| 1665 | offset+=WriteBlobLong(image,dpx.image.image_element[i].end_of_line_padding); |
| 1666 | offset+=WriteBlobLong(image, |
| 1667 | dpx.image.image_element[i].end_of_image_padding); |
| 1668 | offset+=WriteBlob(image,sizeof(dpx.image.image_element[i].description), |
| 1669 | (unsigned char *) dpx.image.image_element[i].description); |
| 1670 | } |
| 1671 | offset+=WriteBlob(image,sizeof(dpx.image.reserve),(unsigned char *) |
| 1672 | dpx.image.reserve); |
| 1673 | /* |
| 1674 | Write orientation header. |
| 1675 | */ |
| 1676 | if ((image->rows != image->magick_rows) || |
| 1677 | (image->columns != image->magick_columns)) |
| 1678 | { |
| 1679 | /* |
| 1680 | These properties are not valid if image size changed. |
| 1681 | */ |
| 1682 | (void) DeleteImageProperty(image,"dpx:orientation.x_offset"); |
| 1683 | (void) DeleteImageProperty(image,"dpx:orientation.y_offset"); |
| 1684 | (void) DeleteImageProperty(image,"dpx:orientation.x_center"); |
| 1685 | (void) DeleteImageProperty(image,"dpx:orientation.y_center"); |
| 1686 | (void) DeleteImageProperty(image,"dpx:orientation.x_size"); |
| 1687 | (void) DeleteImageProperty(image,"dpx:orientation.y_size"); |
| 1688 | } |
| 1689 | dpx.orientation.x_offset=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1690 | value=GetDPXProperty(image_info,image,"dpx:orientation.x_offset",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1691 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1692 | dpx.orientation.x_offset=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1693 | offset+=WriteBlobLong(image,dpx.orientation.x_offset); |
| 1694 | dpx.orientation.y_offset=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1695 | value=GetDPXProperty(image_info,image,"dpx:orientation.y_offset",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1696 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1697 | dpx.orientation.y_offset=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1698 | offset+=WriteBlobLong(image,dpx.orientation.y_offset); |
| 1699 | dpx.orientation.x_center=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1700 | value=GetDPXProperty(image_info,image,"dpx:orientation.x_center",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1701 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1702 | dpx.orientation.x_center=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1703 | offset+=WriteBlobFloat(image,dpx.orientation.x_center); |
| 1704 | dpx.orientation.y_center=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1705 | value=GetDPXProperty(image_info,image,"dpx:orientation.y_center",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1706 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1707 | dpx.orientation.y_center=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1708 | offset+=WriteBlobFloat(image,dpx.orientation.y_center); |
| 1709 | dpx.orientation.x_size=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1710 | value=GetDPXProperty(image_info,image,"dpx:orientation.x_size",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1711 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1712 | dpx.orientation.x_size=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1713 | offset+=WriteBlobLong(image,dpx.orientation.x_size); |
| 1714 | dpx.orientation.y_size=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1715 | value=GetDPXProperty(image_info,image,"dpx:orientation.y_size",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1716 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1717 | dpx.orientation.y_size=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1718 | offset+=WriteBlobLong(image,dpx.orientation.y_size); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1719 | value=GetDPXProperty(image_info,image,"dpx:orientation.filename",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1720 | if (value != (const char *) NULL) |
| 1721 | (void) strncpy(dpx.orientation.filename,value, |
| 1722 | sizeof(dpx.orientation.filename)); |
| 1723 | offset+=WriteBlob(image,sizeof(dpx.orientation.filename),(unsigned char *) |
| 1724 | dpx.orientation.filename); |
| 1725 | offset+=WriteBlob(image,sizeof(dpx.orientation.timestamp),(unsigned char *) |
| 1726 | dpx.orientation.timestamp); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1727 | value=GetDPXProperty(image_info,image,"dpx:orientation.device",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1728 | if (value != (const char *) NULL) |
| cristy | 7959f82 | 2010-03-07 21:47:41 +0000 | [diff] [blame] | 1729 | (void) strncpy(dpx.orientation.device,value,sizeof(dpx.orientation.device)); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1730 | offset+=WriteBlob(image,sizeof(dpx.orientation.device),(unsigned char *) |
| 1731 | dpx.orientation.device); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1732 | value=GetDPXProperty(image_info,image,"dpx:orientation.serial",exception); |
| cristy | 7959f82 | 2010-03-07 21:47:41 +0000 | [diff] [blame] | 1733 | if (value != (const char *) NULL) |
| 1734 | (void) strncpy(dpx.orientation.serial,value,sizeof(dpx.orientation.serial)); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1735 | offset+=WriteBlob(image,sizeof(dpx.orientation.serial),(unsigned char *) |
| 1736 | dpx.orientation.serial); |
| 1737 | for (i=0; i < 4; i++) |
| 1738 | dpx.orientation.border[i]=0; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1739 | value=GetDPXProperty(image_info,image,"dpx:orientation.border",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1740 | if (value != (const char *) NULL) |
| 1741 | { |
| 1742 | flags=ParseGeometry(value,&geometry_info); |
| 1743 | if ((flags & SigmaValue) == 0) |
| 1744 | geometry_info.sigma=geometry_info.rho; |
| 1745 | dpx.orientation.border[0]=(unsigned short) (geometry_info.rho+0.5); |
| 1746 | dpx.orientation.border[1]=(unsigned short) (geometry_info.sigma+0.5); |
| 1747 | dpx.orientation.border[2]=(unsigned short) (geometry_info.xi+0.5); |
| 1748 | dpx.orientation.border[3]=(unsigned short) (geometry_info.psi+0.5); |
| 1749 | } |
| 1750 | for (i=0; i < 4; i++) |
| 1751 | offset+=WriteBlobShort(image,dpx.orientation.border[i]); |
| 1752 | for (i=0; i < 2; i++) |
| 1753 | dpx.orientation.aspect_ratio[i]=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1754 | value=GetDPXProperty(image_info,image,"dpx:orientation.aspect_ratio", |
| 1755 | exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1756 | 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 | */ |
| 1771 | *dpx.film.id='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1772 | value=GetDPXProperty(image_info,image,"dpx:film.id",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1773 | if (value != (const char *) NULL) |
| 1774 | (void) strncpy(dpx.film.id,value,sizeof(dpx.film.id)); |
| 1775 | offset+=WriteBlob(image,sizeof(dpx.film.id),(unsigned char *) dpx.film.id); |
| 1776 | *dpx.film.type='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1777 | value=GetDPXProperty(image_info,image,"dpx:film.type",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1778 | if (value != (const char *) NULL) |
| 1779 | (void) strncpy(dpx.film.type,value,sizeof(dpx.film.type)); |
| 1780 | offset+=WriteBlob(image,sizeof(dpx.film.type),(unsigned char *) |
| 1781 | dpx.film.type); |
| 1782 | *dpx.film.offset='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1783 | value=GetDPXProperty(image_info,image,"dpx:film.offset",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1784 | if (value != (const char *) NULL) |
| 1785 | (void) strncpy(dpx.film.offset,value,sizeof(dpx.film.offset)); |
| 1786 | offset+=WriteBlob(image,sizeof(dpx.film.offset),(unsigned char *) |
| 1787 | dpx.film.offset); |
| 1788 | *dpx.film.prefix='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1789 | value=GetDPXProperty(image_info,image,"dpx:film.prefix",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1790 | if (value != (const char *) NULL) |
| 1791 | (void) strncpy(dpx.film.prefix,value,sizeof(dpx.film.prefix)); |
| 1792 | offset+=WriteBlob(image,sizeof(dpx.film.prefix),(unsigned char *) |
| 1793 | dpx.film.prefix); |
| 1794 | *dpx.film.count='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1795 | value=GetDPXProperty(image_info,image,"dpx:film.count",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1796 | if (value != (const char *) NULL) |
| 1797 | (void) strncpy(dpx.film.count,value,sizeof(dpx.film.count)); |
| 1798 | offset+=WriteBlob(image,sizeof(dpx.film.count),(unsigned char *) |
| 1799 | dpx.film.count); |
| 1800 | *dpx.film.format='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1801 | value=GetDPXProperty(image_info,image,"dpx:film.format",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1802 | if (value != (const char *) NULL) |
| 1803 | (void) strncpy(dpx.film.format,value,sizeof(dpx.film.format)); |
| 1804 | offset+=WriteBlob(image,sizeof(dpx.film.format),(unsigned char *) |
| 1805 | dpx.film.format); |
| 1806 | dpx.film.frame_position=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1807 | value=GetDPXProperty(image_info,image,"dpx:film.frame_position",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1808 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1809 | dpx.film.frame_position=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1810 | offset+=WriteBlobLong(image,dpx.film.frame_position); |
| 1811 | dpx.film.sequence_extent=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1812 | value=GetDPXProperty(image_info,image,"dpx:film.sequence_extent",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1813 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1814 | dpx.film.sequence_extent=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1815 | offset+=WriteBlobLong(image,dpx.film.sequence_extent); |
| 1816 | dpx.film.held_count=0U; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1817 | value=GetDPXProperty(image_info,image,"dpx:film.held_count",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1818 | if (value != (const char *) NULL) |
| cristy | e27293e | 2009-12-18 02:53:20 +0000 | [diff] [blame] | 1819 | dpx.film.held_count=(unsigned int) StringToUnsignedLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1820 | offset+=WriteBlobLong(image,dpx.film.held_count); |
| 1821 | dpx.film.frame_rate=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1822 | value=GetDPXProperty(image_info,image,"dpx:film.frame_rate",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1823 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1824 | dpx.film.frame_rate=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1825 | offset+=WriteBlobFloat(image,dpx.film.frame_rate); |
| 1826 | dpx.film.shutter_angle=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1827 | value=GetDPXProperty(image_info,image,"dpx:film.shutter_angle",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1828 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1829 | dpx.film.shutter_angle=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1830 | offset+=WriteBlobFloat(image,dpx.film.shutter_angle); |
| 1831 | *dpx.film.frame_id='\0'; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1832 | value=GetDPXProperty(image_info,image,"dpx:film.frame_id",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1833 | if (value != (const char *) NULL) |
| 1834 | (void) strncpy(dpx.film.frame_id,value,sizeof(dpx.film.frame_id)); |
| 1835 | offset+=WriteBlob(image,sizeof(dpx.film.frame_id),(unsigned char *) |
| 1836 | dpx.film.frame_id); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1837 | value=GetDPXProperty(image_info,image,"dpx:film.slate",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1838 | if (value != (const char *) NULL) |
| 1839 | (void) strncpy(dpx.film.slate,value,sizeof(dpx.film.slate)); |
| 1840 | 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 | */ |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1847 | value=GetDPXProperty(image_info,image,"dpx:television.time.code",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1848 | if (value != (const char *) NULL) |
| 1849 | dpx.television.time_code=StringToTimeCode(value); |
| 1850 | offset+=WriteBlobLong(image,dpx.television.time_code); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1851 | value=GetDPXProperty(image_info,image,"dpx:television.user.bits",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1852 | if (value != (const char *) NULL) |
| 1853 | dpx.television.user_bits=StringToTimeCode(value); |
| 1854 | offset+=WriteBlobLong(image,dpx.television.user_bits); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1855 | value=GetDPXProperty(image_info,image,"dpx:television.interlace",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1856 | if (value != (const char *) NULL) |
| cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 1857 | dpx.television.interlace=(unsigned char) StringToLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1858 | offset+=WriteBlobByte(image,dpx.television.interlace); |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1859 | value=GetDPXProperty(image_info,image,"dpx:television.field_number", |
| 1860 | exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1861 | if (value != (const char *) NULL) |
| cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 1862 | dpx.television.field_number=(unsigned char) StringToLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1863 | offset+=WriteBlobByte(image,dpx.television.field_number); |
| 1864 | dpx.television.video_signal=0; |
| cristy | bccc4f4 | 2011-11-24 17:57:52 +0000 | [diff] [blame] | 1865 | value=GetDPXProperty(image_info,image,"dpx:television.video_signal", |
| 1866 | exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1867 | if (value != (const char *) NULL) |
| cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 1868 | dpx.television.video_signal=(unsigned char) StringToLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1869 | offset+=WriteBlobByte(image,dpx.television.video_signal); |
| 1870 | dpx.television.padding=0; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1871 | value=GetDPXProperty(image_info,image,"dpx:television.padding",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1872 | if (value != (const char *) NULL) |
| cristy | f2f2727 | 2009-12-17 14:48:46 +0000 | [diff] [blame] | 1873 | dpx.television.padding=(unsigned char) StringToLong(value); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1874 | offset+=WriteBlobByte(image,dpx.television.padding); |
| 1875 | dpx.television.horizontal_sample_rate=0.0f; |
| cristy | bccc4f4 | 2011-11-24 17:57:52 +0000 | [diff] [blame] | 1876 | value=GetDPXProperty(image_info,image,"dpx:television.horizontal_sample_rate", exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1877 | if (value != (const char *) NULL) |
| cristy | bccc4f4 | 2011-11-24 17:57:52 +0000 | [diff] [blame] | 1878 | dpx.television.horizontal_sample_rate=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1879 | offset+=WriteBlobFloat(image,dpx.television.horizontal_sample_rate); |
| 1880 | dpx.television.vertical_sample_rate=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1881 | value=GetDPXProperty(image_info,image,"dpx:television.vertical_sample_rate", |
| 1882 | exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1883 | if (value != (const char *) NULL) |
| cristy | bccc4f4 | 2011-11-24 17:57:52 +0000 | [diff] [blame] | 1884 | dpx.television.vertical_sample_rate=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1885 | offset+=WriteBlobFloat(image,dpx.television.vertical_sample_rate); |
| 1886 | dpx.television.frame_rate=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1887 | value=GetDPXProperty(image_info,image,"dpx:television.frame_rate",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1888 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1889 | dpx.television.frame_rate=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1890 | offset+=WriteBlobFloat(image,dpx.television.frame_rate); |
| 1891 | dpx.television.time_offset=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1892 | value=GetDPXProperty(image_info,image,"dpx:television.time_offset",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1893 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1894 | dpx.television.time_offset=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1895 | offset+=WriteBlobFloat(image,dpx.television.time_offset); |
| 1896 | dpx.television.gamma=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1897 | value=GetDPXProperty(image_info,image,"dpx:television.gamma",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1898 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1899 | dpx.television.gamma=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1900 | offset+=WriteBlobFloat(image,dpx.television.gamma); |
| 1901 | dpx.television.black_level=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1902 | value=GetDPXProperty(image_info,image,"dpx:television.black_level",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1903 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1904 | dpx.television.black_level=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1905 | offset+=WriteBlobFloat(image,dpx.television.black_level); |
| 1906 | dpx.television.black_gain=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1907 | value=GetDPXProperty(image_info,image,"dpx:television.black_gain",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1908 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1909 | dpx.television.black_gain=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1910 | offset+=WriteBlobFloat(image,dpx.television.black_gain); |
| 1911 | dpx.television.break_point=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1912 | value=GetDPXProperty(image_info,image,"dpx:television.break_point",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1913 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1914 | dpx.television.break_point=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1915 | offset+=WriteBlobFloat(image,dpx.television.break_point); |
| 1916 | dpx.television.white_level=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1917 | value=GetDPXProperty(image_info,image,"dpx:television.white_level",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1918 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1919 | dpx.television.white_level=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1920 | offset+=WriteBlobFloat(image,dpx.television.white_level); |
| 1921 | dpx.television.integration_times=0.0f; |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1922 | value=GetDPXProperty(image_info,image,"dpx:television.integration_times", |
| 1923 | exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1924 | if (value != (const char *) NULL) |
| cristy | dbdd0e3 | 2011-11-04 23:29:40 +0000 | [diff] [blame] | 1925 | dpx.television.integration_times=StringToDouble(value,(char **) NULL); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1926 | offset+=WriteBlobFloat(image,dpx.television.integration_times); |
| 1927 | offset+=WriteBlob(image,sizeof(dpx.television.reserve),(unsigned char *) |
| 1928 | dpx.television.reserve); |
| 1929 | /* |
| 1930 | Write user header. |
| 1931 | */ |
| cristy | d15e659 | 2011-10-15 00:13:06 +0000 | [diff] [blame] | 1932 | value=GetDPXProperty(image_info,image,"dpx:user.id",exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1933 | if (value != (const char *) NULL) |
| 1934 | (void) strncpy(dpx.user.id,value,sizeof(dpx.user.id)); |
| 1935 | offset+=WriteBlob(image,sizeof(dpx.user.id),(unsigned char *) dpx.user.id); |
| 1936 | if (profile != (StringInfo *) NULL) |
| 1937 | offset+=WriteBlob(image,GetStringInfoLength(profile), |
| 1938 | GetStringInfoDatum(profile)); |
| 1939 | while (offset < (MagickOffsetType) dpx.image.image_element[0].data_offset) |
| 1940 | { |
| 1941 | count=WriteBlobByte(image,0x00); |
| 1942 | if (count != 1) |
| 1943 | { |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1944 | ThrowFileException(exception,FileOpenError,"UnableToWriteFile", |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1945 | image->filename); |
| 1946 | break; |
| 1947 | } |
| 1948 | offset+=count; |
| 1949 | } |
| 1950 | /* |
| 1951 | Convert pixel packets to DPX raster image. |
| 1952 | */ |
| 1953 | quantum_info=AcquireQuantumInfo(image_info,image); |
| cristy | 891dc79 | 2010-03-04 01:47:16 +0000 | [diff] [blame] | 1954 | SetQuantumQuantum(quantum_info,32); |
| 1955 | SetQuantumPack(quantum_info,dpx.image.image_element[0].packing == 0 ? |
| 1956 | MagickTrue : MagickFalse); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1957 | quantum_type=RGBQuantum; |
| cristy | 8a46d82 | 2012-08-28 23:32:39 +0000 | [diff] [blame] | 1958 | if (image->alpha_trait == BlendPixelTrait) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1959 | quantum_type=RGBAQuantum; |
| 1960 | if (image->colorspace == YCbCrColorspace) |
| 1961 | { |
| 1962 | quantum_type=CbYCrQuantum; |
| cristy | 8a46d82 | 2012-08-28 23:32:39 +0000 | [diff] [blame] | 1963 | if (image->alpha_trait == BlendPixelTrait) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1964 | quantum_type=CbYCrAQuantum; |
| 1965 | if ((horizontal_factor == 2) || (vertical_factor == 2)) |
| 1966 | quantum_type=CbYCrYQuantum; |
| 1967 | } |
| cristy | 3b23222 | 2012-11-05 16:55:17 +0000 | [diff] [blame] | 1968 | extent=GetBytesPerRow(image->columns,image->alpha_trait == BlendPixelTrait ? |
| 1969 | 4UL : 3UL,image->depth,MagickTrue); |
| 1970 | if ((image_info->type != TrueColorType) && |
| 1971 | (image->alpha_trait != BlendPixelTrait) && |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1972 | (IsImageGray(image,exception) != MagickFalse)) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1973 | { |
| 1974 | quantum_type=GrayQuantum; |
| cristy | caac294 | 2009-10-01 13:36:18 +0000 | [diff] [blame] | 1975 | extent=GetBytesPerRow(image->columns,1UL,image->depth,MagickTrue); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1976 | } |
| 1977 | pixels=GetQuantumPixels(quantum_info); |
| cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 1978 | for (y=0; y < (ssize_t) image->rows; y++) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1979 | { |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1980 | p=GetVirtualPixels(image,0,y,image->columns,1,exception); |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1981 | if (p == (const Quantum *) NULL) |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1982 | break; |
| cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 1983 | (void) ExportQuantumPixels(image,(CacheView *) NULL,quantum_info, |
| cristy | 1e178e7 | 2011-08-28 19:44:34 +0000 | [diff] [blame] | 1984 | quantum_type,pixels,exception); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1985 | count=WriteBlob(image,extent,pixels); |
| 1986 | if (count != (ssize_t) extent) |
| 1987 | break; |
| cristy | cee9711 | 2010-05-28 00:44:52 +0000 | [diff] [blame] | 1988 | status=SetImageProgress(image,SaveImageTag,(MagickOffsetType) y, |
| cristy | 202de44 | 2011-04-24 18:19:07 +0000 | [diff] [blame] | 1989 | image->rows); |
| cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1990 | if (status == MagickFalse) |
| 1991 | break; |
| 1992 | } |
| 1993 | quantum_info=DestroyQuantumInfo(quantum_info); |
| 1994 | (void) CloseBlob(image); |
| 1995 | return(status); |
| 1996 | } |