图像转换为PDF
ImageToPdfConverter
类将图像转换为 PDF 文档。
调用 ImageToPdfConverter.ImageToPdf
函数,并使用有效的图片文件路径,以从该图片生成一个新的PDF文档。
调用 ImageToPdfConverter.ImageToPdf
并使用图片路径列表,将生成一个单一的PDF文件,其中每个图片分别位于不同的页面上。
from ironpdf import * # One or more images as a list. This example selects all JPEG images in a specific 'assets' folder. image_files = [os.path.join("assets", f) for f in os.listdir("assets") if f.lower().endswith(('.jpg', '.jpeg'))] directory_list = List[str]() for i in range(len(image_files)): directory_list.Add(image_files[i]) # Converts the images to a PDF and save it. ImageToPdfConverter.ImageToPdf(directory_list).SaveAs("composite.pdf") # Also see PdfDocument.RasterizeToImageFiles() method to flatten a PDF to images or thumbnails
ImageToPdfConverter
类将图像转换为 PDF 文档。
调用 ImageToPdfConverter.ImageToPdf
函数,并使用有效的图片文件路径,以从该图片生成一个新的PDF文档。
调用 ImageToPdfConverter.ImageToPdf
并使用图片路径列表,将生成一个单一的PDF文件,其中每个图片分别位于不同的页面上。