5

我在将 pdf 转换为 jpeg 时发现了一个如此连线的东西,所以我想弄清楚这可能是一个小错误。看下面转换后的jpg,你会发现,背景颜色都是黑色的。图片在这里:www.shdowin.com/public/02.jpg

但是,在pdf的源文件中,可以看到背景颜色是正常的白色。图片在这里:www.shdowin.com/public/normal.jpg

我认为这可能是我的 pdf 文件的错,但是,当我尝试在 .NET 环境中使用 Acrobat.pdf2image 时,转换后的 jpg 显示正确。

这是我的代码:

from wand.image import Image
from wand.color import Color
import os, os.path, sys

def pdf2jpg(source_file, target_file, dest_width, dest_height):
    RESOLUTION    = 300
    ret = True
    try:
        with Image(filename=source_file, resolution=(RESOLUTION,RESOLUTION)) as img:
            img.background_color = Color('white')
            img_width = img.width
            ratio     = dest_width / img_width
            img.resize(dest_width, int(ratio * img.height))
            img.format = 'jpeg'
            img.save(filename = target_file)
    except Exception as e:
        ret = False

    return ret

if __name__ == "__main__":
    source_file = "./02.pdf"
    target_file = "./02.jpg"

    ret = pdf2jpg(source_file, target_file, 1895, 1080)

对这个问题有什么建议吗?

我已将 pdf 上传到 url: 02.pdf

你可以试试...

4

3 回答 3

3

对于仍然有这个问题的其他人,我在谷歌搜索并尝试了几个小时后修复了它,这要感谢这个问题https://stackoverflow.com/a/40494320/2686243使用这两行:

img.background_color = Color("white")
img.alpha_channel = 'remove'

尝试使用 Wand 版本 0.4.4

于 2017-10-06T18:43:35.627 回答
2

一个简单的解决方案是更改命令的顺序:先将格式更改为 jpeg,然后再调整大小

        img.format = 'jpeg'
        img.resize(dest_width, int(ratio * img.height))

通过分辨率元组打开精确大小的 PDF 也很容易,因为分辨率可以是浮点数。

于 2014-12-07T18:44:31.853 回答
2

我自己得到了答案。这是因为 alpha_channel 案例。此 pdf 包含一些透明背景(在我转换为 png 格式后),并且对于调整大小,ImageMagick 选择最佳调整大小过滤器,因此显示黑色背景。

所以,经过大量实验,我发现只需在“with”语句中添加“img.alpha_channel=False”(在img.save()之前),就可以正常工作。

感谢 VadimR 的建议,这很有帮助。

于 2013-12-19T00:44:16.687 回答