python批量将PNG\JPG图片转换成PDF

代码:

将/mnt/data/my_images/换成自己的文件路径,/mnt/data/my_pdf/换成自己的保存路径

from PIL import Image
import os

# Assuming '/mnt/data/my_images/' is the directory with PNG images
folder_path = '/mnt/data/my_images/'
pdfs_path = '/mnt/data/my_pdf/'

# Create a PDFs directory if it doesn't exist
os.makedirs(pdfs_path, exist_ok=True)

# List all files in the directory
files = os.listdir(folder_path)

# Filter out files that are not PNG
png_files = [f for f in files if f.lower().endswith('.png')]

# Convert each PNG image to PDF
for image_file in png_files:
    image_path = os.path.join(folder_path, image_file)
    pdf_path = os.path.join(pdfs_path, image_file.lower().replace('.png', '.pdf'))
    
    # Open the image and convert it to PDF
    image = Image.open(image_path)
    # Ensure the image is in RGB mode (required for saving as PDF)
    if image.mode != 'RGB':
        image = image.convert('RGB')
    image.save(pdf_path, 'PDF')

# Return the path to the directory containing the new PDFs
pdfs_path

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值