I'm converting images to a single PDF-file using convert utility:
$ convert "document-*.tiff" -compress jpeg -quality 60 "output.pdf"
Resulting document has the following tags set up:
Title: output
Producer: file:///usr/share/doc/imagemagick-6-common/html/index.html
CreationDate: Fri May 21 19:12:24 2021 +04
ModDate: Fri May 21 19:12:24 2021 +04
Tagged: no
UserProperties: no
Suspects: no
Form: none
JavaScript: no
Pages: 1
Encrypted: no
Page size: 419.52 x 595.2 pts
Page rot: 0
File size: 226476 bytes
Optimized: no
PDF version: 1.3
Is it possible to override default values for tags like Title and Producer?
convert --version. TheProducertag was a bug, but has been fixed a couple of years ago.exiftoolwill only append new version of tags (not actually overriding old values, they will stay in file itself). So you can restore original values by deleting changes like$ exiftool -PDF-update:all= file.pdf.