How to create new exif tag for pdf files as using exiftool config file on GNU/Linux?

2020-09-28

First you need to define your XMP tag (a complete example here)

$ cat config.cfg
          
%Image::ExifTool::UserDefined = (
  'Image::ExifTool::XMP::pdfx' => {
     PdfSubTitle => {
         Writable => 'string',
     },
  },
);   
1; # end

Then with following command the tag and it’s value will be added:

$ exiftool -config config.cfg -PdfSubTitle="Sub Title" test.pdf

Confirm:

$ exiftool -PdfSubTitle test.pdf
  Pdf Sub Title                   : Sub Title
 
$ exiftool exiftool test.pdf | grep 'Pdf Sub Title'
  Pdf Sub Title                   : Sub Title
scriptexifpdfexiftool

Rojen Zaman

Anarchist | GnuPG: 0x9089BB25

Fedora: SSHFS and NGINX (RHEL, CentOS)

Google Translate TTS Download (Bash Script)