exiftool산출

exiftool산출

Adobe Illustrator에서 여러 개의 EPS 파일 데이터를 내보냈는데, 여기에는 EPS 파일을 미리 볼 수 있도록 TIFF 미리 보기가 포함되어 있는 것 같습니다.

XeLaTeX에서 이 파일을 사용하고 불평하기 때문에 이는 바람직하지 않습니다.

Invalid UTF-8 byte or sequence at line 198 replaced by U+FFFD

이는 TIFF 미리보기의 이진 데이터로 인해 발생합니다. 이 미리보기를 안전하게 삭제하고 싶습니다. Adobe Illustrator에 액세스할 수 없습니다. Unix/Linux에서 사용 가능한 도구를 사용하고 싶습니다.

exiftool산출

ExifTool Version Number         : 10.15
File Name                       : ce_mark_with_cert_number.eps
Directory                       : .
File Size                       : 492 kB
File Modification Date/Time     : 2016:05:13 15:24:17+02:00
File Access Date/Time           : 2016:05:13 15:24:17+02:00
File Inode Change Date/Time     : 2016:05:13 15:24:17+02:00
File Permissions                : rw-r--r--
File Type                       : EPS
File Type Extension             : eps
MIME Type                       : application/postscript
TIFF Preview                    : (Binary data 123976 bytes, use -b option to extract)
Exif Byte Order                 : Little-endian (Intel, II)
Subfile Type                    : Full-resolution Image
Bits Per Sample                 : 8
Compression                     : Uncompressed
Photometric Interpretation      : RGB Palette
Samples Per Pixel               : 2
Planar Configuration            : Chunky
Strip Offsets                   : 379936
Strip Byte Counts               : 115542
Color Map                       : (Binary data 1536 bytes, use -b option to extract)
Extra Samples                   : Associated Alpha
Clipping Path Name              : Path
Creator                         : Adobe Illustrator(R) 8.0
For                             : Some cool company GmbH
Title                           : ce_mark_with_cert_number.eps
Create Date                     : 4/18/2007 10:49 AM
Bounding Box                    : 100 376 542 508
Version                         : 1.2 0
Copyright                       : (C) 1987-1996 Adobe Systems Incorporated All Rights Reserved
Image Height                    : 132
Image Width                     : 442
Image Size                      : 442x132
Megapixels                      : 0.058

중요한 줄은 다음과 같습니다.

TIFF Preview                    : (Binary data 123976 bytes, use -b option to extract)

다른 메타데이터를 유지하면서 파일에서 안전하게 제거하고 싶습니다.

imagemagick Nuke 메타데이터 사용

imagemagick의 매개변수는 -strip작동하지만 모든 메타데이터를 제거합니다. 이는 이상적이지 않습니다.

find -iname '*.eps' -print0 | xargs -0 -I file convert -strip file file

정확한 시도exiftool

1번 시도

exiftool -TIFFPreview:all= ce_mark_with_cert_number.eps

생산하다

Warning: Sorry, Not a deletable group: TIFFPreview
Nothing to do.

2번 시도

exiftool -ThumbnailImage= -PreviewImage= ce_mark_with_cert_number.eps
Warning: [minor] Entries in IFD0 were out of sequence. Fixed. - ce_mark_with_cert_number.eps

생산하다

Warning: [minor] Entries in IFD0 were out of sequence. Fixed. - ce_mark_with_cert_number.eps
    0 image files updated
    1 image files unchanged

관련 정보