Como posso remover a visualização incorporada em um arquivo EPS sem destruir todos os metadados?

1

Tenho vários dados de arquivos EPS exportados do Adobe Illustrator, que aparentemente incorpora uma visualização TIFF para que o arquivo EPS seja visualizável.

Isso é indesejado, porque eu uso esses arquivos no XeLaTeX, que reclama com

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

Isso é causado pelos dados binários na visualização TIFF. Gostaria de remover com segurança essa visualização. Eu não tenho acesso ao Adobe Illustrator. Eu gostaria de usar ferramentas disponíveis no Unix / Linux.

exiftool output

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

Linha importante sendo:

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

Gostaria de remover isso com segurança do arquivo, mantendo outros metadados.

Metadados do Nuke com imagemagick

O parâmetro -strip no imagemagick funciona, mas remove todos os metadados. Isso não é ideal.

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

Tentativas precisas com exiftool

Tentativa 1

exiftool -TIFFPreview:all= ce_mark_with_cert_number.eps

rendimentos

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

Tentativa 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

rendimentos

Warning: [minor] Entries in IFD0 were out of sequence. Fixed. - ce_mark_with_cert_number.eps
    0 image files updated
    1 image files unchanged
    
por Jonathan Komar 13.05.2016 / 15:32

0 respostas