在手機端展現PDF是移動開發者的一大痛點html
目前在PC端展現PDF有較多的解決方案,好比:git
<embed type="application/pdf" src="test.pdf" width="100%" height="100%"/>
這裏再也不贅述使用方法,網上一大堆github
那麼在手機端展現pdf就成了一個難題,尤爲是在微信上(兼容性無力吐槽),通過一番研究,在GitHub上發現了pdf2htmlEX這個神器!bash
GitHub連接先來一發:https://github.com/coolwanglu/pdf2htmlEX微信
Demo再來一發,注意url,是xxx.html! http://coolwanglu.github.io/pdf2htmlEX/demo/geneve.htmlapp
ok,相信你看了Demo基本已經被它的顯示效果驚呆了,下面咱們來看一下它的使用吧:ui
官方文檔:https://github.com/coolwanglu/pdf2htmlEX/wiki/Buildingurl
Mac OS X能夠使用brew來安裝spa
brew install pdf2htmlEX
Windows在以上連接最底部有下載連接。命令行
官方文檔:https://github.com/coolwanglu/pdf2htmlEX/wiki/Quick-Start
安裝好pdf2htmlEX後,使用命令行切換到pdf文件目錄。
這裏簡單介紹幾個命令:
pdf2htmlEX --zoom 1.3 pdf/test.pdf
pdf2htmlEX --embed cfijo --dest-dir out pdf/test.pdf
除了以上的命令之外,還有不少實用方式,好比截取片斷轉換、修改像素等,這裏再也不贅述,感興趣的能夠去官網查看。