ubuntu:16.04
#pdf to image
使用python的一些特殊的庫來將pdf文件轉換為對應的圖片(.png)
##需要安裝的庫
###? Pypdf2:
http://blog.csdn.net/sweeper_freedoman/article/details/52994400
```
pip install pypdf2
```
### Pythonmagick:
http://blog.csdn.net/sweeper_freedoman/article/details/52994690
```
apt-get install python-pythonmagick
```
#Usage:
主程序為class_image.py
測試程序為test.py
運行方法:
```
python test a.pdf ./image/ 256
```
a.pdf是需要轉換的.pdf文件的路徑 ./image/是轉換后輸出圖片的位置
256是生成圖像的密度,決定圖像的大小