Quais ferramentas usar para eliminar metadados em arquivos gráficos?

5

Quais ferramentas posso usar para excluir todos os metadados EXIF, IPTC, XMP etc. de arquivos gráficos?

    
por Ivan 17.01.2011 / 15:26

3 respostas

3

Tente exiftool (que está escrito em perl):

link

uso:

exiftool -all= image.jpg
    
por 17.01.2011 / 16:34
1
O

jhead pode ser usado para excluir metadados de arquivos JPG. As seguintes opções de linha de comando para jhead estão disponíveis (citando a página man do jhead abaixo):

   -dc    Delete comment field from the JPEG header.  Note that the comment is not part of the Exif header.
   -de    Delete the Exif header entirely.  Leaves other metadata sections intact.
   -di    Delete the IPTC section, if present.  Leaves other metadata sections intact.
   -dx    Delete the XMP section, if present.  Leaves other metadata sections intact.
    
por 17.01.2011 / 17:43
0

Existe uma opção para exiv2 para excluir os metadados da imagem.

Por padrão, o exiv2 subcomando rm (ou delete ) remove as miniaturas Exif e os comentários JPEG, adicionais aos que você mencionou (EXIF, IPTC, XMP):

$ exiv2 rm test.jpg

Use a opção -d para excluir apenas partes dos metadados.
De man exiv2 :

-d tgt Delete target(s) for the 'delete' action. Possible targets are:
       a : all supported metadata (the default)
       e : Exif section
       t : Exif thumbnail only
       i : IPTC data
       x : XMP packet
       c : JPEG comment
    
por 02.12.2014 / 04:38