mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
20 lines
738 B
Python
Executable File
20 lines
738 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
DIR = 'pdf'
|
|
|
|
import os
|
|
|
|
with open('out.html','w') as outf:
|
|
outf.write('<!DOCTYPE html>\n<html><head><meta charset=\"utf-8\"></head><body><div style="position:absolute;top:0;left:0;width:80%;height:100%;"><iframe width="100%" height="100%" name="pdf"></iframe></div><div style="position:absolute;top:0;right:0;width:20%;height:100%;overflow:auto;text-align:right;">')
|
|
|
|
for f in os.listdir(DIR):
|
|
if not f.lower().endswith('.pdf'):
|
|
continue
|
|
print f
|
|
os.system('pdf2htmlEX -l 10 --dest-dir html "%s/%s"' % (DIR,f))
|
|
ff = f[:-3]
|
|
outf.write('<a href="html/%shtml" target="pdf">%s</a><br/>' % (ff,ff))
|
|
outf.flush();
|
|
|
|
outf.write('</div></body></html>')
|