mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
10 lines
242 B
Bash
Executable File
10 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PARA="--optimize-text 0 --split-pages 1 --external-hint-tool=ttfautohint --fit-width 1024"
|
|
|
|
for f in ../test/demo/*.pdf; do
|
|
pdf2htmlEX $PARA $f
|
|
done
|
|
|
|
#pdf2htmlEX $PARA -l 3 ../test/demo/issue65_en.pdf issue65_en_sample.html
|