1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 17:48:38 +00:00
pdf2htmlEX/test/test.py

20 lines
732 B
Python
Raw Normal View History

2012-08-27 08:34:06 +00:00
#!/usr/bin/env python
2012-08-27 17:57:39 +00:00
DIR = 'pdf'
2012-08-27 08:34:06 +00:00
import os
2012-09-07 17:45:38 +00:00
with open('out.html','w') as outf:
2012-09-21 08:51:13 +00:00
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;">')
2012-08-27 08:34:06 +00:00
2012-09-07 17:45:38 +00:00
for f in os.listdir(DIR):
if not f.lower().endswith('.pdf'):
continue
print f
os.system('pdf2htmlEX --dest-dir html "%s/%s"' % (DIR,f))
2012-09-07 17:45:38 +00:00
ff = f[:-3]
outf.write('<a href="html/%shtml" target="pdf">%s</a><br/>' % (ff,ff))
outf.flush();
2012-08-27 08:34:06 +00:00
2012-09-07 17:45:38 +00:00
outf.write('</div></body></html>')