I use python to call Prince, I read the document, but it only give a simple example like this:
p = Popen(["prince.exe","-","out.pdf"], stdin=PIPE)
p.stdin.write(result_html.encode('utf-8'))
p.stdin.close()
And my html is use bootstrap, but the pdf dosen't have it.
How to add the bootstrap.css in it? Please write the code
p = Popen(["prince.exe","-","out.pdf"], stdin=PIPE)
p.stdin.write(result_html.encode('utf-8'))
p.stdin.close()
And my html is use bootstrap, but the pdf dosen't have it.
How to add the bootstrap.css in it? Please write the code