gpt4 book ai didi

python - 使用 600dpi 和 jpg 96 dpi 将 PDF 转换为 TIFF

转载 作者:太空狗 更新时间:2023-10-29 11:46:01 25 4
gpt4 key购买 nike

我想使用 ImageMagick 从 Python 脚本将 pdf 转换为 600 dpi 的 tiff 和 96 dpi 的 jpg。

我使用 (imagemagick) 命令行完成了这项任务,但我想在 python 中使用 Imagemagick 将 pdf 转换为 tiff 和 jpg,

你能帮我一下吗......

最佳答案

首先您必须加载 imagemagick 库的包装器

使用 PythonMagick :

from PythonMagick import Image

或使用 pgmagick :

from pgmagick import Image

然后,独立于您加载的库,以下代码将转换图像并调整其大小

img = Image()
img.density('600') # you have to set this here if the initial dpi are > 72

img.read('test.pdf') # the pdf is rendered at 600 dpi
img.write('test.tif')

img.density('96') # this has to be lower than the first dpi value (it was 600)
# img.resize('100x100') # size in px, just in case you need it
img.write('test.jpg')


# ... same code as with pythonmagick

关于python - 使用 600dpi 和 jpg 96 dpi 将 PDF 转换为 TIFF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14868387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com