metalx1000

Edit PDF from shell as ODG

Jun 14th, 2025 (edited)
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. # Convert pdf to odg
  2. libreoffice --headless --convert-to odg form.pdf
  3.  
  4. # extract odg to tmp folder
  5. mkdir tmp
  6. cd tmp
  7. unzip ../form.odg
  8.  
  9. # edit content
  10. vim content.xml
  11.  
  12. # repack odg
  13. zip -r ../new_form.odg *
  14. cd ../
  15.  
  16. # convert back to pdf
  17. libreoffice --headless --convert-to pdf new_form.odg
Advertisement
Add Comment
Please, Sign In to add comment