Ubuntu环境下把word文档转成pdf,把pdf文件转成j…
2018-06-18 03:30:54来源:未知 阅读 ()
环境搭建
使用语言 python3
安装imagemagick(pdf转jpg是内部需要调用到此工具)
apt-get install imagemagick
安装libreoffice(此工具用于将word文档转化成pdf文件)
apt-get install libreoffice
安装python wand,PIL库
pip install wand
pip install PIL
PDF转JPG
先转png,再转jpg是为了避免出现黑色,透明等背景,造成转换出来的图片与pdf文件显示不一样
1 from PIL import Image as Image2 2 from wand.image import Image 3 from wand.color import Color 4 5 def convert_pdf_to_jpg(filename): 6 end_length = len(filename.split('.')[-1]) + 1 7 title = filename[0:-end_length] 8 title = title.split('/')[-1] 9 10 #resolution为分辨率,background为背景颜色 11 with Image(filename=filename, resolution=150, background=Color('White')) as img : 12 13 #页数 14 length = len(img.sequence) 15 16 #如果页数超过1页,生成的文件名会依次加上页码数 17 with img.convert('png') as converted: 18 path = 'static/local_images/%s.png' % title 19 converted.save(filename=path) 20 image_list = [] 21 if length == 1: 22 path = 'static/local_images/%s.png' % title 23 image_list.append(path) 24 else: 25 for i in range(0, length): 27 path = 'static/local_images/%s-%d.png' % (title, i) 28 image_list.append(path) 29 jpg_list = [] 30 for img in image_list: 31 image = Image2.open(img) 32 x,y = image.size 33 background = Image2.new('RGBA', image.size, (255,255,255)) 34 35 try: 36 background.paste(image, (0, 0, x, y), image) 37 image = background.convert('RGB') 38 except: 39 image = image.convert('RGBA') 40 background.paste(image, (0, 0, x, y), image) 41 image = background.convert('RGB') 42 43 44 title = img.split('.')[0] 45 name = title + '.jpg' 46 image.save(name) 47 os.remove(img) 48 name = "%s/%s" %(static_host, name) 49 jpg_list.append(name) 50 51 return jpg_list
word文档转PDF
python没有直接把word转换成pdf文档的库,只能先安装libreoffice工具,然后利用os库系统调用libreoffice工具
1 import os 2 3 def convert_doc_to_pdf(filename): 4 end_length = len(filename.split('.')[-1]) + 1 5 name = filename[0:-end_length] 6 7 cmd = 'libreoffice --convert-to pdf %s' % filename 8 os.system(cmd) 9 name = name.split('/')[-1] + '.pdf' 10 return name
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Django对接SQL Server服务 2019-07-24
- 【Demo 1】基于object_detection API的行人检测 1:环境与依 2019-07-24
- Windows环境下Python3安装Pyspider 2019-07-24
- python虚拟环境virtualenv下安装MySQL-python(1.2.3) 2019-07-24
- Python之虚拟环境virtualenv、pipreqs生成项目依赖第三方包 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash