1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
|
#------------------------------------------------------------------------------
# File: ICC_Profile.pm
#
# Description: Read ICC Profile meta information
#
# Revisions: 11/16/2004 - P. Harvey Created
#
# References: 1) http://www.color.org/icc_specs2.html (ICC.1:2003-09)
# 2) http://www.color.org/icc_specs2.html (ICC.1:2001-04)
# 3) http://developer.apple.com/documentation/GraphicsImaging/Reference/ColorSync_Manager/ColorSync_Manager.pdf
# 4) http://www.color.org/privatetag2007-01.pdf
# 5) http://www.color.org/icc_specs2.xalter (approved revisions, 2010-07-16)
# 6) Eef Vreeland private communication
#
# Notes: The ICC profile information is different: the format of each
# tag is embedded in the information instead of in the directory
# structure. This makes things a bit more complex because I need
# an extra level of logic to decode the variable-format tags.
#------------------------------------------------------------------------------
package Image::ExifTool::ICC_Profile;
use strict;
use vars qw($VERSION);
use Image::ExifTool qw(:DataAccess :Utils);
$VERSION = '1.35';
sub ProcessICC($$);
sub ProcessICC_Profile($$$);
sub WriteICC_Profile($$;$);
sub ProcessMetadata($$$);
sub ValidateICC($);
# illuminant type definitions
my %illuminantType = (
1 => 'D50',
2 => 'D65',
3 => 'D93',
4 => 'F2',
5 => 'D55',
6 => 'A',
7 => 'Equi-Power (E)',
8 => 'F8',
);
my %profileClass = (
scnr => 'Input Device Profile',
mntr => 'Display Device Profile',
prtr => 'Output Device Profile',
'link'=> 'DeviceLink Profile',
spac => 'ColorSpace Conversion Profile',
abst => 'Abstract Profile',
nmcl => 'NamedColor Profile',
nkpf => 'Nikon Input Device Profile (NON-STANDARD!)', # (written by Nikon utilities)
);
my %manuSig = ( #6
'NONE' => 'none',
'none' => 'none', #PH
'' => '', #PH
'4d2p' => 'Erdt Systems GmbH & Co KG',
'AAMA' => 'Aamazing Technologies, Inc.',
'ACER' => 'Acer Peripherals',
'ACLT' => 'Acolyte Color Research',
'ACTI' => 'Actix Systems, Inc.',
'ADAR' => 'Adara Technology, Inc.',
'ADBE' => 'Adobe Systems Inc.',
'ADI ' => 'ADI Systems, Inc.',
'AGFA' => 'Agfa Graphics N.V.',
'ALMD' => 'Alps Electric USA, Inc.',
'ALPS' => 'Alps Electric USA, Inc.',
'ALWN' => 'Alwan Color Expertise',
'AMTI' => 'Amiable Technologies, Inc.',
'AOC ' => 'AOC International (U.S.A), Ltd.',
'APAG' => 'Apago',
'APPL' => 'Apple Computer Inc.',
'appl' => 'Apple Computer Inc.',
'AST ' => 'AST',
'AT&T' => 'AT&T Computer Systems',
'BAEL' => 'BARBIERI electronic',
'berg' => 'bergdesign incorporated',
'bICC' => 'basICColor GmbH',
'BRCO' => 'Barco NV',
'BRKP' => 'Breakpoint Pty Limited',
'BROT' => 'Brother Industries, LTD',
'BULL' => 'Bull',
'BUS ' => 'Bus Computer Systems',
'C-IT' => 'C-Itoh',
'CAMR' => 'Intel Corporation',
'CANO' => 'Canon, Inc. (Canon Development Americas, Inc.)',
'CARR' => 'Carroll Touch',
'CASI' => 'Casio Computer Co., Ltd.',
'CBUS' => 'Colorbus PL',
'CEL ' => 'Crossfield',
'CELx' => 'Crossfield',
'ceyd' => 'Integrated Color Solutions, Inc.',
'CGS ' => 'CGS Publishing Technologies International GmbH',
'CHM ' => 'Rochester Robotics',
'CIGL' => 'Colour Imaging Group, London',
'CITI' => 'Citizen',
'CL00' => 'Candela, Ltd.',
'CLIQ' => 'Color IQ',
'clsp' => 'MacDermid ColorSpan, Inc.',
'CMCO' => 'Chromaco, Inc.',
'CMiX' => 'CHROMiX',
'COLO' => 'Colorgraphic Communications Corporation',
'COMP' => 'COMPAQ Computer Corporation',
'COMp' => 'Compeq USA/Focus Technology',
'CONR' => 'Conrac Display Products',
'CORD' => 'Cordata Technologies, Inc.',
'CPQ ' => 'Compaq Computer Corporation',
'CPRO' => 'ColorPro',
'CRN ' => 'Cornerstone',
'CTX ' => 'CTX International, Inc.',
'CVIS' => 'ColorVision',
'CWC ' => 'Fujitsu Laboratories, Ltd.',
'DARI' => 'Darius Technology, Ltd.',
'DATA' => 'Dataproducts',
'DCP ' => 'Dry Creek Photo',
'DCRC' => 'Digital Contents Resource Center, Chung-Ang University',
'DELL' => 'Dell Computer Corporation',
'DIC ' => 'Dainippon Ink and Chemicals',
'DICO' => 'Diconix',
'DIGI' => 'Digital',
'DL&C' => 'Digital Light & Color',
'DPLG' => 'Doppelganger, LLC',
'DS ' => 'Dainippon Screen',
'ds ' => 'Dainippon Screen',
'DSOL' => 'DOOSOL',
'DUPN' => 'DuPont',
'dupn' => 'DuPont',
'Eizo' => 'EIZO NANAO CORPORATION',
'EPSO' => 'Epson',
'ESKO' => 'Esko-Graphics',
'ETRI' => 'Electronics and Telecommunications Research Institute',
'EVER' => 'Everex Systems, Inc.',
'EXAC' => 'ExactCODE GmbH',
'FALC' => 'Falco Data Products, Inc.',
'FF ' => 'Fuji Photo Film Co.,LTD',
'FFEI' => 'FujiFilm Electronic Imaging, Ltd.',
'ffei' => 'FujiFilm Electronic Imaging, Ltd.',
'flux' => 'FluxData Corporation',
'FNRD' => 'fnord software',
'FORA' => 'Fora, Inc.',
'FORE' => 'Forefront Technology Corporation',
'FP ' => 'Fujitsu',
'FPA ' => 'WayTech Development, Inc.',
'FUJI' => 'Fujitsu',
'FX ' => 'Fuji Xerox Co., Ltd.',
'GCC ' => 'GCC Technologies, Inc.',
'GGSL' => 'Global Graphics Software Limited',
'GMB ' => 'Gretagmacbeth',
'GMG ' => 'GMG GmbH & Co. KG',
'GOLD' => 'GoldStar Technology, Inc.',
'GOOG' => 'Google', #PH
'GPRT' => 'Giantprint Pty Ltd',
'GTMB' => 'Gretagmacbeth',
'GVC ' => 'WayTech Development, Inc.',
'GW2K' => 'Sony Corporation',
'HCI ' => 'HCI',
'HDM ' => 'Heidelberger Druckmaschinen AG',
'HERM' => 'Hermes',
'HITA' => 'Hitachi America, Ltd.',
'HiTi' => 'HiTi Digital, Inc.',
'HP ' => 'Hewlett-Packard',
'HTC ' => 'Hitachi, Ltd.',
'IBM ' => 'IBM Corporation',
'IDNT' => 'Scitex Corporation, Ltd.',
'Idnt' => 'Scitex Corporation, Ltd.',
'IEC ' => 'Hewlett-Packard',
'IIYA' => 'Iiyama North America, Inc.',
'IKEG' => 'Ikegami Electronics, Inc.',
'IMAG' => 'Image Systems Corporation',
'IMI ' => 'Ingram Micro, Inc.',
'Inca' => 'Inca Digital Printers Ltd.',
'INTC' => 'Intel Corporation',
'INTL' => 'N/A (INTL)',
'INTR' => 'Intra Electronics USA, Inc.',
'IOCO' => 'Iocomm International Technology Corporation',
'IPS ' => 'InfoPrint Solutions Company',
'IRIS' => 'Scitex Corporation, Ltd.',
'Iris' => 'Scitex Corporation, Ltd.',
'iris' => 'Scitex Corporation, Ltd.',
'ISL ' => 'Ichikawa Soft Laboratory',
'ITNL' => 'N/A (ITNL)',
'IVM ' => 'IVM',
'IWAT' => 'Iwatsu Electric Co., Ltd.',
'JPEG' => 'Joint Photographic Experts Group', #PH
'JSFT' => 'Jetsoft Development',
'JVC ' => 'JVC Information Products Co.',
'KART' => 'Scitex Corporation, Ltd.',
'Kart' => 'Scitex Corporation, Ltd.',
'kart' => 'Scitex Corporation, Ltd.',
'KFC ' => 'KFC Computek Components Corporation',
'KLH ' => 'KLH Computers',
'KMHD' => 'Konica Minolta Holdings, Inc.',
'KNCA' => 'Konica Corporation',
'KODA' => 'Kodak',
'KYOC' => 'Kyocera',
'LCAG' => 'Leica Camera AG',
'LCCD' => 'Leeds Colour',
'lcms' => 'Little CMS', #NealKrawetz
'LDAK' => 'Left Dakota',
'LEAD' => 'Leading Technology, Inc.',
'Leaf' => 'Leaf', #PH
'LEXM' => 'Lexmark International, Inc.',
'LINK' => 'Link Computer, Inc.',
'LINO' => 'Linotronic',
'Lino' => 'Linotronic', #PH (NC)
'lino' => 'Linotronic', #PH (NC)
'LITE' => 'Lite-On, Inc.',
'MAGC' => 'Mag Computronic (USA) Inc.',
'MAGI' => 'MAG Innovision, Inc.',
'MANN' => 'Mannesmann',
'MICN' => 'Micron Technology, Inc.',
'MICR' => 'Microtek',
'MICV' => 'Microvitec, Inc.',
'MINO' => 'Minolta',
'MITS' => 'Mitsubishi Electronics America, Inc.',
'MITs' => 'Mitsuba Corporation',
'Mits' => 'Mitsubishi Electric Corporation Kyoto Works',
'MNLT' => 'Minolta',
'MODG' => 'Modgraph, Inc.',
'MONI' => 'Monitronix, Inc.',
'MONS' => 'Monaco Systems Inc.',
'MORS' => 'Morse Technology, Inc.',
'MOTI' => 'Motive Systems',
'MSFT' => 'Microsoft Corporation',
'MUTO' => 'MUTOH INDUSTRIES LTD.',
'NANA' => 'NANAO USA Corporation',
'NEC ' => 'NEC Corporation',
'NEXP' => 'NexPress Solutions LLC',
'NISS' => 'Nissei Sangyo America, Ltd.',
'NKON' => 'Nikon Corporation',
'ob4d' => 'Erdt Systems GmbH & Co KG',
'obic' => 'Medigraph GmbH',
'OCE ' => 'Oce Technologies B.V.',
'OCEC' => 'OceColor',
'OKI ' => 'Oki',
'OKID' => 'Okidata',
'OKIP' => 'Okidata',
'OLIV' => 'Olivetti',
'OLYM' => 'OLYMPUS OPTICAL CO., LTD',
'ONYX' => 'Onyx Graphics',
'OPTI' => 'Optiquest',
'PACK' => 'Packard Bell',
'PANA' => 'Matsushita Electric Industrial Co., Ltd.',
'PANT' => 'Pantone, Inc.',
'PBN ' => 'Packard Bell',
'PFU ' => 'PFU Limited',
'PHIL' => 'Philips Consumer Electronics Co.',
'PNTX' => 'HOYA Corporation PENTAX Imaging Systems Division',
'POne' => 'Phase One A/S',
'PREM' => 'Premier Computer Innovations',
'PRIN' => 'Princeton Graphic Systems',
'PRIP' => 'Princeton Publishing Labs',
'QLUX' => 'Hong Kong',
'QMS ' => 'QMS, Inc.',
'QPCD' => 'QPcard AB',
'QUAD' => 'QuadLaser',
'quby' => 'Qubyx Sarl',
'QUME' => 'Qume Corporation',
'RADI' => 'Radius, Inc.',
'RDDx' => 'Integrated Color Solutions, Inc.',
'RDG ' => 'Roland DG Corporation',
'REDM' => 'REDMS Group, Inc.',
'RELI' => 'Relisys',
'RGMS' => 'Rolf Gierling Multitools',
'RICO' => 'Ricoh Corporation',
'RNLD' => 'Edmund Ronald',
'ROYA' => 'Royal',
'RPC ' => 'Ricoh Printing Systems,Ltd.',
'RTL ' => 'Royal Information Electronics Co., Ltd.',
'SAMP' => 'Sampo Corporation of America',
'SAMS' => 'Samsung, Inc.',
'SANT' => 'Jaime Santana Pomares',
'SCIT' => 'Scitex Corporation, Ltd.',
'Scit' => 'Scitex Corporation, Ltd.',
'scit' => 'Scitex Corporation, Ltd.',
'SCRN' => 'Dainippon Screen',
'scrn' => 'Dainippon Screen',
'SDP ' => 'Scitex Corporation, Ltd.',
'Sdp ' => 'Scitex Corporation, Ltd.',
'sdp ' => 'Scitex Corporation, Ltd.',
'SEC ' => 'SAMSUNG ELECTRONICS CO.,LTD',
'SEIK' => 'Seiko Instruments U.S.A., Inc.',
'SEIk' => 'Seikosha',
'SGUY' => 'ScanGuy.com',
'SHAR' => 'Sharp Laboratories',
'SICC' => 'International Color Consortium',
'siwi' => 'SIWI GRAFIKA CORPORATION',
'SONY' => 'SONY Corporation',
'Sony' => 'Sony Corporation',
'SPCL' => 'SpectraCal',
'STAR' => 'Star',
'STC ' => 'Sampo Technology Corporation',
'TALO' => 'Talon Technology Corporation',
'TAND' => 'Tandy',
'TATU' => 'Tatung Co. of America, Inc.',
'TAXA' => 'TAXAN America, Inc.',
'TDS ' => 'Tokyo Denshi Sekei K.K.',
'TECO' => 'TECO Information Systems, Inc.',
'TEGR' => 'Tegra',
'TEKT' => 'Tektronix, Inc.',
'TI ' => 'Texas Instruments',
'TMKR' => 'TypeMaker Ltd.',
'TOSB' => 'TOSHIBA corp.',
'TOSH' => 'Toshiba, Inc.',
'TOTK' => 'TOTOKU ELECTRIC Co., LTD',
'TRIU' => 'Triumph',
'TSBT' => 'TOSHIBA TEC CORPORATION',
'TTX ' => 'TTX Computer Products, Inc.',
'TVM ' => 'TVM Professional Monitor Corporation',
'TW ' => 'TW Casper Corporation',
'ULSX' => 'Ulead Systems',
'UNIS' => 'Unisys',
'UTZF' => 'Utz Fehlau & Sohn',
'VARI' => 'Varityper',
'VIEW' => 'Viewsonic',
'VISL' => 'Visual communication',
'VIVO' => 'Vivo Mobile Communication Co., Ltd',
'WANG' => 'Wang',
'WLBR' => 'Wilbur Imaging',
'WTG2' => 'Ware To Go',
'WYSE' => 'WYSE Technology',
'XERX' => 'Xerox Corporation',
'XRIT' => 'X-Rite',
'yxym' => 'YxyMaster GmbH',
'Z123' => "Lavanya's test Company",
'Zebr' => 'Zebra Technologies Inc',
'ZRAN' => 'Zoran Corporation',
# also seen: " ",ACMS,KCMS,UCCM,etc2,SCTX
);
# ICC_Profile tag table
%Image::ExifTool::ICC_Profile::Main = (
GROUPS => { 2 => 'Image' },
PROCESS_PROC => \&ProcessICC_Profile,
WRITE_PROC => \&WriteICC_Profile,
NOTES => q{
ICC profile information is used in many different file types including JPEG,
TIFF, PDF, PostScript, Photoshop, PNG, MIFF, PICT, QuickTime, XCF and some
RAW formats. While the tags listed below are not individually writable, the
entire profile itself can be accessed via the extra 'ICC_Profile' tag, but
this tag is neither extracted nor written unless specified explicitly. See
L<http://www.color.org/icc_specs2.xalter> for the official ICC
specification.
},
A2B0 => 'AToB0',
A2B1 => 'AToB1',
A2B2 => 'AToB2',
bXYZ => 'BlueMatrixColumn', # (called BlueColorant in ref 2)
bTRC => {
Name => 'BlueTRC',
Description => 'Blue Tone Reproduction Curve',
},
B2A0 => 'BToA0',
B2A1 => 'BToA1',
B2A2 => 'BToA2',
calt => {
Name => 'CalibrationDateTime',
Groups => { 2 => 'Time' },
PrintConv => '$self->ConvertDateTime($val)',
},
targ => {
Name => 'CharTarget',
ValueConv => '$val=~s/\0.*//; length $val > 128 ? \$val : $val',
},
chad => 'ChromaticAdaptation',
chrm => {
Name => 'Chromaticity',
Groups => { 1 => 'ICC_Profile#' }, #(just for the group list)
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::Chromaticity',
Validate => '$type eq "chrm"',
},
},
clro => 'ColorantOrder',
clrt => {
Name => 'ColorantTable',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::ColorantTable',
Validate => '$type eq "clrt"',
},
},
clot => { # new in version 4.2
Name => 'ColorantTableOut',
Binary => 1,
},
cprt => {
Name => 'ProfileCopyright',
ValueConv => '$val=~s/\0.*//; $val', # may be null terminated
},
crdi => 'CRDInfo', #2
dmnd => {
Name => 'DeviceMfgDesc',
Groups => { 2 => 'Camera' },
},
dmdd => {
Name => 'DeviceModelDesc',
Groups => { 2 => 'Camera' },
},
devs => {
Name => 'DeviceSettings', #2
Groups => { 2 => 'Camera' },
},
gamt => 'Gamut',
kTRC => {
Name => 'GrayTRC',
Description => 'Gray Tone Reproduction Curve',
},
gXYZ => 'GreenMatrixColumn', # (called GreenColorant in ref 2)
gTRC => {
Name => 'GreenTRC',
Description => 'Green Tone Reproduction Curve',
},
lumi => 'Luminance',
meas => {
Name => 'Measurement',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::Measurement',
Validate => '$type eq "meas"',
},
},
bkpt => 'MediaBlackPoint',
wtpt => 'MediaWhitePoint',
ncol => 'NamedColor', #2
ncl2 => 'NamedColor2',
resp => 'OutputResponse',
pre0 => 'Preview0',
pre1 => 'Preview1',
pre2 => 'Preview2',
desc => 'ProfileDescription',
pseq => 'ProfileSequenceDesc',
psd0 => 'PostScript2CRD0', #2
psd1 => 'PostScript2CRD1', #2
psd2 => 'PostScript2CRD2', #2
ps2s => 'PostScript2CSA', #2
ps2i => 'PS2RenderingIntent', #2
rXYZ => 'RedMatrixColumn', # (called RedColorant in ref 2)
rTRC => {
Name => 'RedTRC',
Description => 'Red Tone Reproduction Curve',
},
scrd => 'ScreeningDesc',
scrn => 'Screening',
'bfd '=> {
Name => 'UCRBG',
Description => 'Under Color Removal and Black Gen.',
},
tech => {
Name => 'Technology',
PrintConv => {
fscn => 'Film Scanner',
dcam => 'Digital Camera',
rscn => 'Reflective Scanner',
ijet => 'Ink Jet Printer',
twax => 'Thermal Wax Printer',
epho => 'Electrophotographic Printer',
esta => 'Electrostatic Printer',
dsub => 'Dye Sublimation Printer',
rpho => 'Photographic Paper Printer',
fprn => 'Film Writer',
vidm => 'Video Monitor',
vidc => 'Video Camera',
pjtv => 'Projection Television',
'CRT '=> 'Cathode Ray Tube Display',
'PMD '=> 'Passive Matrix Display',
'AMD '=> 'Active Matrix Display',
KPCD => 'Photo CD',
imgs => 'Photo Image Setter',
grav => 'Gravure',
offs => 'Offset Lithography',
silk => 'Silkscreen',
flex => 'Flexography',
mpfs => 'Motion Picture Film Scanner', #5
mpfr => 'Motion Picture Film Recorder', #5
dmpc => 'Digital Motion Picture Camera', #5
dcpj => 'Digital Cinema Projector', #5
},
},
vued => 'ViewingCondDesc',
view => {
Name => 'ViewingConditions',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::ViewingConditions',
Validate => '$type eq "view"',
},
},
ciis => 'ColorimetricIntentImageState', #5
scoe => 'SceneColorimetryEstimates', #5
sape => 'SceneAppearanceEstimates', #5
fpce => 'FocalPlaneColorimetryEstimates', #5
rhoc => 'ReflectionHardcopyOrigColorimetry', #5
rpoc => 'ReflectionPrintOutputColorimetry', #5
psid => { #5
Name => 'ProfileSequenceIdentifier',
Binary => 1,
},
B2D0 => { Name => 'BToD0', Binary => 1 }, #5
B2D1 => { Name => 'BToD1', Binary => 1 }, #5
B2D2 => { Name => 'BToD2', Binary => 1 }, #5
B2D3 => { Name => 'BToD3', Binary => 1 }, #5
D2B0 => { Name => 'DToB0', Binary => 1 }, #5
D2B1 => { Name => 'DToB1', Binary => 1 }, #5
D2B2 => { Name => 'DToB2', Binary => 1 }, #5
D2B3 => { Name => 'DToB3', Binary => 1 }, #5
rig0 => { #5
Name => 'PerceptualRenderingIntentGamut',
PrintConv => {
prmg => 'Perceptual Reference Medium Gamut',
},
},
rig2 => { #5
Name => 'SaturationRenderingIntentGamut',
PrintConv => {
prmg => 'Perceptual Reference Medium Gamut',
},
},
meta => { #5 (EVENTUALLY DECODE THIS ONCE WE HAVE A SAMPLE!!)
Name => 'Metadata',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::Metadata',
Validate => '$type eq "meta"',
},
},
# ColorSync custom tags (ref 3)
psvm => 'PS2CRDVMSize',
vcgt => 'VideoCardGamma',
mmod => 'MakeAndModel',
dscm => 'ProfileDescriptionML',
ndin => 'NativeDisplayInfo',
# Microsoft custom tags (ref http://msdn2.microsoft.com/en-us/library/ms536870.aspx)
MS00 => 'WCSProfiles',
psd3 => { #6
Name => 'PostScript2CRD3',
Binary => 1, # (NC)
},
# the following entry represents the ICC profile header, and doesn't
# exist as a tag in the directory. It is only in this table to provide
# a link so ExifTool can locate the header tags
Header => {
Name => 'ProfileHeader',
SubDirectory => {
TagTable => 'Image::ExifTool::ICC_Profile::Header',
},
},
);
# ICC profile header definition
%Image::ExifTool::ICC_Profile::Header = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-header', 2 => 'Image' },
4 => {
Name => 'ProfileCMMType',
Format => 'string[4]',
SeparateTable => 'ManuSig',
PrintConv => \%manuSig,
},
8 => {
Name => 'ProfileVersion',
Format => 'int16s',
PrintConv => '($val >> 8).".".(($val & 0xf0)>>4).".".($val & 0x0f)',
},
12 => {
Name => 'ProfileClass',
Format => 'string[4]',
PrintConv => \%profileClass,
},
16 => {
Name => 'ColorSpaceData',
Format => 'string[4]',
},
20 => {
Name => 'ProfileConnectionSpace',
Format => 'string[4]',
},
24 => {
Name => 'ProfileDateTime',
Groups => { 2 => 'Time' },
Format => 'int16u[6]',
ValueConv => 'sprintf("%.4d:%.2d:%.2d %.2d:%.2d:%.2d",split(" ",$val));',
PrintConv => '$self->ConvertDateTime($val)',
},
36 => {
Name => 'ProfileFileSignature',
Format => 'string[4]',
},
40 => {
Name => 'PrimaryPlatform',
Format => 'string[4]',
PrintConv => {
'APPL' => 'Apple Computer Inc.',
'MSFT' => 'Microsoft Corporation',
'SGI ' => 'Silicon Graphics Inc.',
'SUNW' => 'Sun Microsystems Inc.',
'TGNT' => 'Taligent Inc.',
},
},
44 => {
Name => 'CMMFlags',
Format => 'int32u',
PrintConv => q[
($val & 0x01 ? "Embedded, " : "Not Embedded, ") .
($val & 0x02 ? "Not Independent" : "Independent")
],
},
48 => {
Name => 'DeviceManufacturer',
Format => 'string[4]',
SeparateTable => 'ManuSig',
PrintConv => \%manuSig,
},
52 => {
Name => 'DeviceModel',
Format => 'string[4]',
# ROMM = Reference Output Medium Metric
},
56 => {
Name => 'DeviceAttributes',
Format => 'int32u[2]',
PrintConv => q[
my @v = split ' ', $val;
($v[1] & 0x01 ? "Transparency, " : "Reflective, ") .
($v[1] & 0x02 ? "Matte, " : "Glossy, ") .
($v[1] & 0x04 ? "Negative, " : "Positive, ") .
($v[1] & 0x08 ? "B&W" : "Color");
],
},
64 => {
Name => 'RenderingIntent',
Format => 'int32u',
PrintConv => {
0 => 'Perceptual',
1 => 'Media-Relative Colorimetric',
2 => 'Saturation',
3 => 'ICC-Absolute Colorimetric',
},
},
68 => {
Name => 'ConnectionSpaceIlluminant',
Format => 'fixed32s[3]', # xyz
},
80 => {
Name => 'ProfileCreator',
Format => 'string[4]',
SeparateTable => 'ManuSig',
PrintConv => \%manuSig,
},
84 => {
Name => 'ProfileID',
Format => 'int8u[16]',
PrintConv => 'Image::ExifTool::ICC_Profile::HexID($val)',
},
);
# viewingConditionsType (view) definition
%Image::ExifTool::ICC_Profile::ViewingConditions = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-view', 2 => 'Image' },
8 => {
Name => 'ViewingCondIlluminant',
Format => 'fixed32s[3]', # xyz
},
20 => {
Name => 'ViewingCondSurround',
Format => 'fixed32s[3]', # xyz
},
32 => {
Name => 'ViewingCondIlluminantType',
Format => 'int32u',
PrintConv => \%illuminantType,
},
);
# measurementType (meas) definition
%Image::ExifTool::ICC_Profile::Measurement = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-meas', 2 => 'Image' },
8 => {
Name => 'MeasurementObserver',
Format => 'int32u',
PrintConv => {
1 => 'CIE 1931',
2 => 'CIE 1964',
},
},
12 => {
Name => 'MeasurementBacking',
Format => 'fixed32s[3]', # xyz
},
24 => {
Name => 'MeasurementGeometry',
Format => 'int32u',
PrintConv => {
0 => 'Unknown',
1 => '0/45 or 45/0',
2 => '0/d or d/0',
},
},
28 => {
Name => 'MeasurementFlare',
Format => 'fixed32u',
PrintConv => '$val*100 . "%"', # change into a percent
},
32 => {
Name => 'MeasurementIlluminant',
Format => 'int32u',
PrintConv => \%illuminantType,
},
);
# chromaticity (chrm) definition
%Image::ExifTool::ICC_Profile::Chromaticity = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-chrm', 2 => 'Image' },
8 => {
Name => 'ChromaticityChannels',
Format => 'int16u',
},
10 => {
Name => 'ChromaticityColorant',
Format => 'int16u',
PrintConv => {
1 => 'ITU-R BT.709',
2 => 'SMPTE RP145-1994',
3 => 'EBU Tech.3213-E',
4 => 'P22',
},
},
# include definitions for 4 channels -- if there are
# fewer then the ProcessBinaryData logic won't print them.
# If there are more, oh well.
12 => {
Name => 'ChromaticityChannel1',
Format => 'fixed32u[2]',
},
20 => {
Name => 'ChromaticityChannel2',
Format => 'fixed32u[2]',
},
28 => {
Name => 'ChromaticityChannel3',
Format => 'fixed32u[2]',
},
36 => {
Name => 'ChromaticityChannel4',
Format => 'fixed32u[2]',
},
);
# colorantTable (clrt) definition
%Image::ExifTool::ICC_Profile::ColorantTable = (
PROCESS_PROC => \&Image::ExifTool::ProcessBinaryData,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-clrt', 2 => 'Image' },
8 => {
Name => 'ColorantCount',
Format => 'int32u',
},
# include definitions for 3 colorants -- if there are
# fewer then the ProcessBinaryData logic won't print them.
# If there are more, oh well.
12 => {
Name => 'Colorant1Name',
Format => 'string[32]',
},
44 => {
Name => 'Colorant1Coordinates',
Format => 'int16u[3]',
},
50 => {
Name => 'Colorant2Name',
Format => 'string[32]',
},
82 => {
Name => 'Colorant2Coordinates',
Format => 'int16u[3]',
},
88 => {
Name => 'Colorant3Name',
Format => 'string[32]',
},
120 => {
Name => 'Colorant3Coordinates',
Format => 'int16u[3]',
},
);
# metadata (meta) tags
%Image::ExifTool::ICC_Profile::Metadata = (
PROCESS_PROC => \&ProcessMetadata,
GROUPS => { 0 => 'ICC_Profile', 1 => 'ICC-meta', 2 => 'Image' },
VARS => { NO_ID => 1 },
NOTES => q{
Only these few tags have been pre-defined, but ExifTool will extract any
Metadata tags that exist.
},
ManufacturerName => { },
MediaColor => { },
MediaWeight => { },
);
#------------------------------------------------------------------------------
# Print ICC Profile ID in hex
# Inputs: 1) string of numbers
# Returns: string of hex digits
sub HexID($)
{
my $val = shift;
my @vals = split(' ', $val);
# return a simple zero if no MD5 done
return 0 unless grep(!/^0/, @vals);
$val = '';
foreach (@vals) { $val .= sprintf("%.2x",$_); }
return $val;
}
#------------------------------------------------------------------------------
# Get formatted value from ICC tag (which has the type embedded)
# Inputs: 0) data reference, 1) offset to tag data, 2) tag data size
# Returns: Formatted value or undefined if format not supported
# Notes: The following types are handled by BinaryTables:
# chromaticityType, colorantTableType, measurementType, viewingConditionsType
# The following types are currently not handled (most are large tables):
# curveType, lut16Type, lut8Type, lutAtoBType, lutBtoAType, namedColor2Type,
# parametricCurveType, profileSeqDescType, responseCurveSet16Type
# The multiLocalizedUnicodeType must be handled by the calling routine.
sub FormatICCTag($$$)
{
my ($dataPt, $offset, $size) = @_;
my $type;
if ($size >= 8) {
# get data type from start of tag data
$type = substr($$dataPt, $offset, 4);
} else {
$type = 'err';
}
# colorantOrderType
if ($type eq 'clro' and $size >= 12) {
my $num = Get32u($dataPt, $offset+8);
if ($size >= $num + 12) {
my $pos = $offset + 12;
return join(' ',unpack("x$pos c$num", $$dataPt));
}
}
# dataType
if ($type eq 'data' and $size >= 12) {
my $form = Get32u($dataPt, $offset+8);
# format 0 is ASCII data
$form == 0 and return substr($$dataPt, $offset+12, $size-12);
# binary data and other data types treat as binary (ie. don't format)
}
# dateTimeType
if ($type eq 'dtim' and $size >= 20) {
return sprintf("%.4d:%.2d:%.2d %.2d:%.2d:%.2d",
Get16u($dataPt, $offset+8), Get16u($dataPt, $offset+10),
Get16u($dataPt, $offset+12), Get16u($dataPt, $offset+14),
Get16u($dataPt, $offset+16), Get16u($dataPt, $offset+18));
}
# s15Fixed16ArrayType
if ($type eq 'sf32') {
return ReadValue($dataPt,$offset+8,'fixed32s',($size-8)/4,$size-8);
}
# signatureType
if ($type eq 'sig ' and $size >= 12) {
return substr($$dataPt, $offset+8, 4);
}
# textType
$type eq 'text' and return substr($$dataPt, $offset+8, $size-8);
# textDescriptionType (ref 2, replaced by multiLocalizedUnicodeType)
if ($type eq 'desc' and $size >= 12) {
my $len = Get32u($dataPt, $offset+8);
if ($size >= $len + 12) {
my $str = substr($$dataPt, $offset+12, $len);
$str =~ s/\0.*//s; # truncate at null terminator
return $str;
}
}
# u16Fixed16ArrayType
if ($type eq 'uf32') {
return ReadValue($dataPt,$offset+8,'fixed32u',($size-8)/4,$size-8);
}
# uInt32ArrayType
if ($type eq 'ui32') {
return ReadValue($dataPt,$offset+8,'int32u',($size-8)/4,$size-8);
}
# uInt64ArrayType
if ($type eq 'ui64') {
return ReadValue($dataPt,$offset+8,'int64u',($size-8)/8,$size-8);
}
# uInt8ArrayType
if ($type eq 'ui08') {
return ReadValue($dataPt,$offset+8,'int8u',$size-8,$size-8);
}
# XYZType
if ($type eq 'XYZ ') {
my $str = '';
my $pos;
for ($pos=8; $pos+12<=$size; $pos+=12) {
$str and $str .= ', ';
$str .= ReadValue($dataPt,$offset+$pos,'fixed32s',3,$size-$pos);
}
return $str;
}
return undef; # data type is not supported
}
#------------------------------------------------------------------------------
# Process ICC metadata record (ref 5) (UNTESTED!)
# Inputs: 0) ExifTool ref, 1) dirInfo ref, 2) tag table ref
# Returns: 1 on success
sub ProcessMetadata($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
my $dirStart = $$dirInfo{DirStart};
my $dirLen = $$dirInfo{DirLen};
my $dirEnd = $dirStart + $dirLen;
if ($dirLen < 16 or substr($$dataPt, $dirStart, 4) ne 'dict') {
$et->Warn('Invalid ICC meta dictionary');
return 0;
}
my $num = Get32u($dataPt, $dirStart + 8);
$et->VerboseDir('Metadata', $num);
my $size = Get32u($dataPt, $dirStart + 12);
$size < 16 and $et->Warn('Invalid ICC meta record size'), return 0;
# NOTE: In the example the minimum offset is 20,
# but this doesn't jive with the table (both in ref 5)
my $minPtr = 16 + $size * $num;
my $index;
for ($index=0; $index<$num; ++$index) {
my $entry = $dirStart + 16 + $size * $index;
if ($entry + $size > $dirEnd) {
$et->Warn('Truncated ICC meta dictionary');
last;
}
my $namePtr = Get32u($dataPt, $entry);
my $nameLen = Get32u($dataPt, $entry + 4);
my $valuePtr = Get32u($dataPt, $entry + 8);
my $valueLen = Get32u($dataPt, $entry + 16);
next unless $namePtr and $valuePtr; # ignore if offsets are zero
if ($namePtr < $minPtr or $namePtr + $nameLen > $dirLen or
$valuePtr < $minPtr or $valuePtr + $valueLen > $dirLen)
{
$et->Warn('Corrupted ICC meta dictionary');
last;
}
my $tag = substr($dataPt, $dirStart + $namePtr, $nameLen);
my $val = substr($dataPt, $dirStart + $valuePtr, $valueLen);
$tag = $et->Decode($tag, 'UTF16', 'MM', 'UTF8');
$val = $et->Decode($val, 'UTF16', 'MM');
# generate tagInfo if it doesn't exist
unless ($$tagTablePtr{$tag}) {
my $name = ucfirst $tag;
$name =~ s/\s+(.)/\u$1/g;
$name =~ tr/-_a-zA-Z0-9//dc;
next unless length $name;
AddTagToTable($tagTablePtr, $tag, { Name => $name });
}
$et->HandleTag($tagTablePtr, $tag, $val);
}
return 1;
}
#------------------------------------------------------------------------------
# Write ICC profile file
# Inputs: 0) ExifTool object reference, 1) Reference to directory information
# Returns: 1 on success, 0 if this wasn't a valid ICC file,
# or -1 if a write error occurred
sub WriteICC($$)
{
my ($et, $dirInfo) = @_;
# first make sure this is a valid ICC file (or no file at all)
my $raf = $$dirInfo{RAF};
my $buff;
return 0 if $raf->Read($buff, 24) and ValidateICC(\$buff);
# now write the new ICC
$buff = WriteICC_Profile($et, $dirInfo);
if (defined $buff and length $buff) {
Write($$dirInfo{OutFile}, $buff) or return -1;
} else {
$et->Error('No ICC information to write');
}
return 1;
}
#------------------------------------------------------------------------------
# Write ICC data as a block
# Inputs: 0) ExifTool object reference, 1) source dirInfo reference,
# 2) tag table reference
# Returns: ICC data block (may be empty if no ICC data)
# Notes: Increments ExifTool CHANGED flag if changed
sub WriteICC_Profile($$;$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
$et or return 1; # allow dummy access
my $dirName = $$dirInfo{DirName} || 'ICC_Profile';
# (don't write AsShotICCProfile or CurrentICCProfile here)
return undef unless $dirName eq 'ICC_Profile';
my $nvHash = $et->GetNewValueHash($Image::ExifTool::Extra{$dirName});
my $val = $et->GetNewValue($nvHash);
$val = '' unless defined $val;
return undef unless $et->IsOverwriting($nvHash, $val);
++$$et{CHANGED};
return $val;
}
#------------------------------------------------------------------------------
# Validate ICC data
# Inputs: 0) ICC data reference
# Returns: error string or undef on success
sub ValidateICC($)
{
my $valPtr = shift;
my $err;
length($$valPtr) < 24 and return 'Invalid ICC profile';
$profileClass{substr($$valPtr, 12, 4)} or $err = 'profile class';
my $col = substr($$valPtr, 16, 4); # ColorSpaceData
my $con = substr($$valPtr, 20, 4); # ConnectionSpace
my $match = '(XYZ |Lab |Luv |YCbr|Yxy |RGB |GRAY|HSV |HLS |CMYK|CMY |[2-9A-F]CLR)';
$col =~ /$match/ or $err = 'color space';
$con =~ /$match/ or $err = 'connection space';
return $err ? "Invalid ICC profile (bad $err)" : undef;
}
#------------------------------------------------------------------------------
# Process ICC profile file
# Inputs: 0) ExifTool object reference, 1) Reference to directory information
# Returns: 1 if this was an ICC file
sub ProcessICC($$)
{
my ($et, $dirInfo) = @_;
my $raf = $$dirInfo{RAF};
my $buff;
$raf->Read($buff, 24) == 24 or return 0;
# check to see if this is a valid ICC profile file
return 0 if ValidateICC(\$buff);
$et->SetFileType();
# read the profile
my $size = unpack('N', $buff);
if ($size < 128 or $size & 0x80000000) {
$et->Error("Bad ICC Profile length ($size)");
return 1;
}
$raf->Seek(0, 0);
unless ($raf->Read($buff, $size) == $size) {
$et->Error('Truncated ICC profile');
return 1;
}
my %dirInfo = (
DataPt => \$buff,
DataLen => $size,
DirStart => 0,
DirLen => $size,
);
my $tagTablePtr = GetTagTable('Image::ExifTool::ICC_Profile::Main');
return ProcessICC_Profile($et, \%dirInfo, $tagTablePtr);
}
#------------------------------------------------------------------------------
# Process ICC_Profile APP13 record
# Inputs: 0) ExifTool object reference, 1) Reference to directory information
# 2) Tag table reference (undefined to read ICC file)
# Returns: 1 on success
sub ProcessICC_Profile($$$)
{
my ($et, $dirInfo, $tagTablePtr) = @_;
my $dataPt = $$dirInfo{DataPt};
my $dirStart = $$dirInfo{DirStart} || 0;
my $dirLen = $$dirInfo{DirLen};
my $verbose = $et->Options('Verbose');
return 0 if $dirLen < 4;
# extract binary ICC_Profile data block if binary mode or requested
if ((($$et{TAGS_FROM_FILE} and not $$et{EXCL_TAG_LOOKUP}{icc_profile}) or
$$et{REQ_TAG_LOOKUP}{icc_profile}) and
# (don't extract from AsShotICCProfile or CurrentICCProfile)
(not $$dirInfo{Name} or $$dirInfo{Name} eq 'ICC_Profile'))
{
$et->FoundTag('ICC_Profile', substr($$dataPt, $dirStart, $dirLen));
}
SetByteOrder('MM'); # ICC_Profile is always big-endian
# check length of table
my $len = Get32u($dataPt, $dirStart);
if ($len != $dirLen or $len < 128) {
$et->Warn("Bad length ICC_Profile (length $len)");
return 0 if $len < 128 or $dirLen < $len;
}
my $pos = $dirStart + 128; # position at start of table
my $numEntries = Get32u($dataPt, $pos);
if ($numEntries < 1 or $numEntries >= 0x100
or $numEntries * 12 + 132 > $dirLen)
{
$et->Warn("Bad ICC_Profile table ($numEntries entries)");
return 0;
}
if ($verbose) {
$et->VerboseDir('ICC_Profile', $numEntries, $dirLen);
my $fakeInfo = { Name=>'ProfileHeader', SubDirectory => { } };
$et->VerboseInfo(undef, $fakeInfo);
}
# increment ICC dir count
my $dirCount = $$et{DIR_COUNT}{ICC} = ($$et{DIR_COUNT}{ICC} || 0) + 1;
$$et{SET_GROUP1} = '+' . $dirCount if $dirCount > 1;
# process the header block
my %subdirInfo = (
Name => 'ProfileHeader',
DataPt => $dataPt,
DataLen => $$dirInfo{DataLen},
DirStart => $dirStart,
DirLen => 128,
Parent => $$dirInfo{DirName},
DirName => 'Header',
);
my $newTagTable = GetTagTable('Image::ExifTool::ICC_Profile::Header');
$et->ProcessDirectory(\%subdirInfo, $newTagTable);
$pos += 4; # skip item count
my $index;
for ($index=0; $index<$numEntries; ++$index) {
my $tagID = substr($$dataPt, $pos, 4);
my $offset = Get32u($dataPt, $pos + 4);
my $size = Get32u($dataPt, $pos + 8);
$pos += 12;
my $tagInfo = $et->GetTagInfo($tagTablePtr, $tagID);
# unknown tags aren't generated automatically by GetTagInfo()
# if the tagID's aren't numeric, so we must do this manually:
if (not $tagInfo and $$et{OPTIONS}{Unknown}) {
$tagInfo = { Unknown => 1 };
AddTagToTable($tagTablePtr, $tagID, $tagInfo);
}
next unless defined $tagInfo;
if ($offset + $size > $dirLen) {
$et->Warn("Bad ICC_Profile table (truncated)");
last;
}
my $valuePtr = $dirStart + $offset;
my $subdir = $$tagInfo{SubDirectory};
# format the value unless this is a subdirectory
my ($value, $fmt);
if ($size > 4) {
$fmt = substr($$dataPt, $valuePtr, 4);
# handle multiLocalizedUnicodeType
if ($fmt eq 'mluc' and not $subdir) {
next if $size < 28;
my $count = Get32u($dataPt, $valuePtr + 8);
my $recLen = Get32u($dataPt, $valuePtr + 12);
next if $recLen < 12;
my $i;
for ($i=0; $i<$count; ++$i) {
my $recPos = $valuePtr + 16 + $i * $recLen;
last if $recPos + $recLen > $valuePtr + $size;
my $lang = substr($$dataPt, $recPos, 4);
my $langInfo;
# validate language code and change to standard case (just in case)
if ($lang =~ s/^([a-z]{2})([A-Z]{2})$/\L$1-\U$2/i and $lang ne 'en-US') {
$langInfo = Image::ExifTool::GetLangInfo($tagInfo, $lang);
}
my $strLen = Get32u($dataPt, $recPos + 4);
my $strPos = Get32u($dataPt, $recPos + 8);
last if $strPos + $strLen > $size;
my $str = substr($$dataPt, $valuePtr + $strPos, $strLen);
$str = $et->Decode($str, 'UTF16');
$et->HandleTag($tagTablePtr, $tagID, $str,
TagInfo => $langInfo || $tagInfo,
Table => $tagTablePtr,
Index => $index,
Value => $str,
DataPt => $dataPt,
Size => $strLen,
Start => $valuePtr + $strPos,
Format => "type '${fmt}'",
);
}
$et->Warn("Corrupted $$tagInfo{Name} data") if $i < $count;
next;
}
} else {
$fmt = 'err ';
}
$value = FormatICCTag($dataPt, $valuePtr, $size) unless $subdir;
$verbose and $et->VerboseInfo($tagID, $tagInfo,
Table => $tagTablePtr,
Index => $index,
Value => $value,
DataPt => $dataPt,
Size => $size,
Start => $valuePtr,
Format => "type '${fmt}'",
);
if ($subdir) {
my $name = $$tagInfo{Name};
undef $newTagTable;
if ($$subdir{TagTable}) {
$newTagTable = GetTagTable($$subdir{TagTable});
unless ($newTagTable) {
warn "Unknown tag table $$subdir{TagTable}\n";
next;
}
} else {
warn "Must specify TagTable for SubDirectory $name\n";
next;
}
%subdirInfo = (
Name => $name,
DataPt => $dataPt,
DataPos => $$dirInfo{DataPos},
DataLen => $$dirInfo{DataLen},
DirStart => $valuePtr,
DirLen => $size,
DirName => $name,
Parent => $$dirInfo{DirName},
);
my $type = substr($$dataPt, $valuePtr, 4);
#### eval Validate ($type)
if (defined $$subdir{Validate} and not eval $$subdir{Validate}) {
$et->Warn("Invalid $name data");
} else {
$et->ProcessDirectory(\%subdirInfo, $newTagTable, $$subdir{ProcessProc});
}
} elsif (defined $value) {
$et->FoundTag($tagInfo, $value);
} else {
$value = substr($$dataPt, $valuePtr, $size);
# treat unsupported formats as binary data
$$tagInfo{ValueConv} = '\$val' unless defined $$tagInfo{ValueConv};
$et->FoundTag($tagInfo, $value);
}
}
delete $$et{SET_GROUP1};
return 1;
}
1; # end
__END__
=head1 NAME
Image::ExifTool::ICC_Profile - Read ICC Profile meta information
=head1 SYNOPSIS
This module is loaded automatically by Image::ExifTool when required.
=head1 DESCRIPTION
This module contains the definitions to read information from ICC profiles.
ICC (International Color Consortium) profiles are used to translate color
data created on one device into another device's native color space.
=head1 AUTHOR
Copyright 2003-2021, Phil Harvey (philharvey66 at gmail.com)
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=head1 REFERENCES
=over 4
=item L<http://www.color.org/icc_specs2.html>
=item L<http://developer.apple.com/documentation/GraphicsImaging/Reference/ColorSync_Manager/ColorSync_Manager.pdf>
=back
=head1 SEE ALSO
L<Image::ExifTool::TagNames/ICC_Profile Tags>,
L<Image::ExifTool(3pm)|Image::ExifTool>
=cut
|