Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 2.71 KB

PDFAnalysis.md

File metadata and controls

29 lines (25 loc) · 2.71 KB

PDF Analysis links

  • some good tips by angelalbertini:
    • Generic advice to make PDF manipulations by hand (fill forms, modify contents...):
      1. run qpdf -qdf to normalize the PDF [optionally with --stream-data=uncompress].
      2. do your changes.
      3. clean up the PDF with mutool clean.
      4. remember that some fields like author can be stored as Unicode: so 'ange' = 00 61 00 6E 00 67 00 65
      5. inline kerning is often used (by LaTeX, etc...) in the pages contents: it's an array of a short string (w/ parenthesis), a number, a short string...
      6. so 'ange' can be stored like: [(an) 3.0 (ge)]
    • PDF Cheat Sheets: Cheat sheets for the Portable Document Format

Links