gpt4 book ai didi

imagemagick - Python Magickwand pdf 到图像转换并调整图像大小

转载 作者:行者123 更新时间:2023-12-02 21:50:06 25 4
gpt4 key购买 nike

我需要创建 pdf 文件的缩略图,我正在使用 Imagemagick 来实现这一点。

我尝试过Pythonmagick和wand将pdf转换为图像。但是,当我尝试调整转换后的 pdf 大小时,生成的图像变成黑色。

是否有任何选项可以使用 python 包装器设置 -define pdf:use-cropbox=true

Python 中是否有其他方法可以将 pdf 转换为缩略图?

代码如下:

    import wand
img = wand.image.Image(filename="d:\\test.pdf[0]")
img.resize(160,160)
img.save(filename="d:\\test.jpg")

最佳答案

我找到了解决这个问题的方法。首先将 pdf 转换为图像并保存图像。打开新保存的图像并调整其大小。

import wand
img = wand.image.Image(filename="d:\\test.pdf[0]")
img.save(filename="d:\\temp.jpg")
img = wand.image.Image(filename="d:\\temp.jpg")
img.resize(160,160)
img.save(filename="d:\\resized_image.jpg")

我仍在等待更好的答案。

关于imagemagick - Python Magickwand pdf 到图像转换并调整图像大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12759778/

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