gpt4 book ai didi

python - 使用 PythonMagick 从 pdf 更改为图像时图像质量下降

转载 作者:太空宇宙 更新时间:2023-11-04 00:49:04 25 4
gpt4 key购买 nike

我正在使用 PythonMagick 将 pdf 转换为图像。我成功地更改了格式,但在此过程中图像质量有所下降。

这是我正在使用的代码。

sample_pdf="test_pdf"
sample_image="test_image"

pdf='/home/path/'+sample_pdf+''
image='/home/path/images/'+sample_image+''

im = PythonMagick.Image(pdf)
im.write(image)

我在这个过程中失去了图像质量。

在研究过程中,我发现下面的代码通过使用 ImageMagick 有助于保持图像质量

convert -density 300 source.pdf -quality 80 target.jpg

PythonMagick 中有类似的东西吗?我似乎无法在网上找到任何内容。

提前致谢。

最佳答案

import PythonMagick

sample_pdf="test_pdf"
sample_image="test_image"

pdf='/home/path/'+sample_pdf+''
image='/home/path/images/'+sample_image+''

im = PythonMagick.Image()
im.density("300")
im.read(pdf)
im.quality(100)
im.write(image)

这对我来说就像一个魅力。再次感谢 Payet。

关于python - 使用 PythonMagick 从 pdf 更改为图像时图像质量下降,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37961535/

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