특정 태그 세트가 포함된 TIFF 파일이 있습니다. ICC 메타데이터의 오프셋(단어 정렬 아님)을 수정하기 위해 이 파일을 변환했을 때 완전히 다른 태그 세트가 생겼습니다. 이런 일이 발생하는 이유는 무엇이며 원본 메타데이터를 보존하려면 어떻게 해야 합니까?
변환:
convert original.tif fixed.tiff
누락된 태그:
- 소프트웨어(305)
- 날짜 시간(306)
- 아티스트(315)
새 라벨:
- 백점(318)
- 프라이머리 크로마(319)
tiffdump의 전체 출력:
$ tiffdump original.tif
original.tif:
Magic: 0x4949 <little-endian> Version: 0x2a <ClassicTIFF>
Directory 0: offset 8 (0x8) next 0 (0)
SubFileType (254) LONG (4) 1<2>
ImageWidth (256) LONG (4) 1<2370>
ImageLength (257) LONG (4) 1<3334>
BitsPerSample (258) SHORT (3) 3<8 8 8>
Compression (259) SHORT (3) 1<1>
Photometric (262) SHORT (3) 1<2>
FillOrder (266) SHORT (3) 1<1>
StripOffsets (273) LONG (4) 1<125459>
Orientation (274) SHORT (3) 1<1>
SamplesPerPixel (277) SHORT (3) 1<3>
RowsPerStrip (278) SHORT (3) 1<3334>
StripByteCounts (279) LONG (4) 1<23704740>
XResolution (282) RATIONAL (5) 1<400>
YResolution (283) RATIONAL (5) 1<400>
PlanarConfig (284) SHORT (3) 1<1>
ResolutionUnit (296) SHORT (3) 1<2>
PageNumber (297) SHORT (3) 2<0 1>
Software (305) ASCII (2) 30<Some software...>
DateTime (306) ASCII (2) 20<2009:07:01 10:46:50\0>
Artist (315) ASCII (2) 37<Some creator...>
ICC Profile (34675) UNDEFINED (7) 125084<00 0x1 0xe8 0x9c 0x41 0x50 0x50 0x4c 0x2 0x40 00 00 0x73 0x63 0x6e 0x72 0x52 0x47 0x42 0x20 0x4c 0x61 0x62 0x20 ...>
$ tiffdump fixed.tiff
fixed.tiff:
Magic: 0x4949 <little-endian> Version: 0x2a <ClassicTIFF>
Directory 0: offset 23704748 (0x169b4ac) next 0 (0)
ImageWidth (256) SHORT (3) 1<2370>
ImageLength (257) SHORT (3) 1<3334>
BitsPerSample (258) SHORT (3) 3<8 8 8>
Compression (259) SHORT (3) 1<1>
Photometric (262) SHORT (3) 1<2>
FillOrder (266) SHORT (3) 1<1>
StripOffsets (273) LONG (4) 3334<8 7118 14228 21338 28448 35558 42668 49778 56888 63998 71108 78218 85328 92438 99548 106658 113768 120878 127988 135098 142208 149318 156428 163538 ...>
Orientation (274) SHORT (3) 1<1>
SamplesPerPixel (277) SHORT (3) 1<3>
RowsPerStrip (278) SHORT (3) 1<1>
StripByteCounts (279) LONG (4) 3334<7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 7110 ...>
XResolution (282) RATIONAL (5) 1<400>
YResolution (283) RATIONAL (5) 1<400>
PlanarConfig (284) SHORT (3) 1<1>
ResolutionUnit (296) SHORT (3) 1<2>
PageNumber (297) SHORT (3) 2<0 1>
Whitepoint (318) RATIONAL (5) 2<0.3127 0.329>
PrimaryChromaticities (319) RATIONAL (5) 6<0.64 0.33 0.3 0.6 0.15 0.06>
ICC Profile (34675) UNDEFINED (7) 125084<00 0x1 0xe8 0x9c 0x41 0x50 0x50 0x4c 0x2 0x40 00 00 0x73 0x63 0x6e 0x72 0x52 0x47 0x42 0x20 0x4c 0x61 0x62 0x20 ...>
저는 Cygwin에서 최근에 설치된 Imagemagick과 libtiff를 사용하고 있습니다.