现在我通过pdf2htmlEx,
将pdf转换为html源文件pdf 21MB, 转换后的HTML近900MB, 转换命令:
pdf2htmlEX --no-drm 0 --embed-image 1 --dest-dir ./output09 ./b.pdf ./b.html
有没有办法改善输出html的大小?
答案 0 :(得分:0)
我已经通过以下命令解决了它:
pdf2htmlEX --embed-image 1 --embed-css 0 --embed-font 1 --embed-javascript 0 --embed-outline 0 --no-drm 0 --dest-dir ./output0928 ./a.pdf ./a.html
参数的含义如下:
--embed-css <int> embed CSS files into output (default: 1)
--embed-font <int> embed font files into output (default: 1)
--embed-image <int> embed image files into output (default: 1)
--embed-javascript <int> embed JavaScript files into output (default: 1)
--embed-outline <int> embed outlines into output (default: 1)