将单页PDF转换为图像
Convert PDF of single page to image
我正在尝试使用以下代码将 pdf 转换为图像
from pdf2image import convert_from_path
pages = convert_from_path('Sample.pdf', 50, poppler_path=r'C:\Program Files\poppler-20.11.0\bin')
pages[0].save('OutImage.jpg', 'JPEG')
代码有效,但我正在尝试控制输出图像以使其大小为 1389 x 1965
你能指导我吗?
找到 size parameter 个 convert_from_path
函数
size -> Size of the resulting image(s), uses the Pillow (width, height) standard
使用示例:
from pdf2image import convert_from_path
pages = convert_from_path("eng.pdf", 50, size=(1389, 1965))
pages[0].save("OutImage.jpg", "JPEG")
$ file OutImage.jpg
OutImage.jpg: JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 1389x1965, components 3
我正在尝试使用以下代码将 pdf 转换为图像
from pdf2image import convert_from_path
pages = convert_from_path('Sample.pdf', 50, poppler_path=r'C:\Program Files\poppler-20.11.0\bin')
pages[0].save('OutImage.jpg', 'JPEG')
代码有效,但我正在尝试控制输出图像以使其大小为 1389 x 1965 你能指导我吗?
找到 size parameter 个 convert_from_path
函数
size -> Size of the resulting image(s), uses the Pillow (width, height) standard
使用示例:
from pdf2image import convert_from_path
pages = convert_from_path("eng.pdf", 50, size=(1389, 1965))
pages[0].save("OutImage.jpg", "JPEG")
$ file OutImage.jpg
OutImage.jpg: JPEG image data, JFIF standard 1.01, aspect ratio, density 1x1, segment length 16, baseline, precision 8, 1389x1965, components 3