pdf2xmp.args 970 B

123456789101112131415161718192021222324252627
  1. #------------------------------------------------------------------------------
  2. # File: pdf2xmp.args
  3. #
  4. # Description: Tag name translations for converting from PDF DocInfo to XMP
  5. #
  6. # Usage: exiftool -tagsFromFile SRCFILE -@ pdf2xmp.args DSTFILE
  7. #
  8. # Requires: ExifTool version 7.07 or later
  9. #
  10. # Revisions: 2011/01/23 - P. Harvey Created
  11. #
  12. # References: http://www.adobe.com/devnet/xmp/
  13. #
  14. # Notes: These arguments will not delete XMP tags which are missing
  15. # from the PDF. The XMP tags should be deleted beforehand if
  16. # required.
  17. #------------------------------------------------------------------------------
  18. -XMP-dc:Title < PDF:Title
  19. -XMP-dc:Creator < PDF:Author
  20. -XMP-dc:Description < PDF:Subject
  21. -XMP-pdf:Keywords < PDF:Keywords
  22. -XMP-xmp:CreatorTool < PDF:Creator
  23. -XMP-pdf:Producer < PDF:Producer
  24. -XMP-xmp:CreateDate < PDF:CreateDate
  25. -XMP-xmp:ModifyDate < PDF:ModifyDate
  26. -XMP-pdf:Trapped < PDF:Trapped
  27. # end