Answers for "python output save as pdf"

0

python save figure as pdf

import matplotlib.pyplot as plt

f = plt.figure()
plt.plot(range(10), range(10), "o")
plt.show()

f.savefig("foo.pdf", bbox_inches='tight')
Posted by: Guest on July-17-2020
0

python read and write pdf data

>> pip install textract

import textract
text = textract.process('path/to/pdf/file', method='pdfminer')
Posted by: Guest on December-02-2020

Python Answers by Framework

Browse Popular Code Answers by Language