Jun-18-2023, 03:23 AM
I had a lot of small pdfs, which I merged to 1 big pdf using PyPDF2, a great tool! Works perfectly!
When I open the big pdf, and go to File Options -> Properties I can see most of the info I set, but CREATED and MODIFIED just show None
Do I have to put in the dates in a special format? I was hoping I could just put text!
Here is the meta data:
When I open the big pdf, and go to File Options -> Properties I can see most of the info I set, but CREATED and MODIFIED just show None
Do I have to put in the dates in a special format? I was hoping I could just put text!
Here is the meta data:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Add the metadata writer.add_metadata( { "/Author" : "Roy Rodgers" , "/Producer" : "PyPDF2" , "/Created" : "Wednesday May 17 2023" , "/Modified" : "Regularly" , "/Date" : "Wednesday May 17 2023" , "/Place" : "中国江苏南京市" , "/Title" : "An Alternative" , "/Pages" : "287" , "/Words" : "101765" , "/Python" : "pdfs merged and pages and words counted with Python PyPDF2" } ) |