Python多圖片合并PDF的方法
更新時間:2019年01月03日 09:17:44 作者:staHuri
今天小編就為大家分享一篇關(guān)于Python多圖片合并PDF的方法,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧
python多圖片合并pdf
起因
一個做美工的朋友需要將多個圖片jpg 、png 合并起來,PS操作太慢了所以用了python進(jìn)行完成這個任務(wù)
代碼
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @File : 2.py
# @Author: huifer
# @Date : 2018/12/20
from PIL import Image
import os
def rea(pdf_name):
file_list = os.listdir('.')
pic_name = []
im_list = []
for x in file_list:
if "jpg" in x or 'png' in x or 'jpeg' in x:
pic_name.append(x)
pic_name.sort()
new_pic = []
for x in pic_name:
if "jpg" in x:
new_pic.append(x)
for x in pic_name:
if "png" in x:
new_pic.append(x)
print("hec", new_pic)
im1 = Image.open(new_pic[0])
new_pic.pop(0)
for i in new_pic:
img = Image.open(i)
# im_list.append(Image.open(i))
if img.mode == "RGBA":
img = img.convert('RGB')
im_list.append(img)
else:
im_list.append(img)
im1.save(pdf_name, "PDF", resolution=100.0, save_all=True, append_images=im_list)
print("輸出文件名稱:", pdf_name)
if __name__ == '__main__':
tttt = """
_____ _____ _____ _______ ____ _____ _____ ______
| __ \_ _/ ____| |__ __/ __ \ | __ \| __ \| ____|
| |__) || || | | | | | | | | |__) | | | | |__
| ___/ | || | | | | | | | | ___/| | | | __|
| | _| || |____ | | | |__| | | | | |__| | |
|_| |_____\_____| |_| \____/ |_| |_____/|_|
"""
print(tttt)
print("合成")
pdf_name = input("請輸入合成PDF文件名稱:")
if ".pdf" in pdf_name:
rea(pdf_name=pdf_name)
else:
rea(pdf_name="{}.pdf".format(pdf_name))
input("按任意鍵結(jié)束")




合成后


總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
相關(guān)文章
Python并發(fā)執(zhí)行的幾種實(shí)現(xiàn)方法
在Python中多線程是實(shí)現(xiàn)并發(fā)的一種方式,多線程可以讓程序在同一時間內(nèi)進(jìn)行多個任務(wù),從而提高程序的效率和執(zhí)行速度,這篇文章主要給大家介紹了關(guān)于Python并發(fā)執(zhí)行的幾種實(shí)現(xiàn)方法,需要的朋友可以參考下2024-08-08
Python使用pylab庫實(shí)現(xiàn)繪制直方圖功能示例
這篇文章主要介紹了Python使用pylab庫實(shí)現(xiàn)繪制直方圖功能,結(jié)合實(shí)例形式分析了Python數(shù)據(jù)讀取、遍歷以及基于pylab庫繪制直方圖的相關(guān)操作技巧,需要的朋友可以參考下2018-06-06
10種檢測Python程序運(yùn)行時間、CPU和內(nèi)存占用的方法
這篇文章主要介紹了10種檢測Python程序運(yùn)行時間、CPU和內(nèi)存占用的方法,包括利用Python裝飾器或是外部的Unix Shell命令等,需要的朋友可以參考下2015-04-04

