web-dev-qa-db-ja.com

Pythonワンド変換PDF PNGを無効にして透過(alpha_channel)

PDFをPNGに変換しようとしています-これはすべて正常に機能しますが、無効にしたと思われる場合でも、出力イメージは透明のままです。

with Image(filename='sample.pdf', resolution=300) as img:
    img.background_color = Color("white")
    img.alpha_channel = False
    img.save(filename='image.png')

上記は画像を生成しますが、透明です、私も以下を試しました:

with Image(filename='sample.pdf', resolution=300, background=Color('white')) as img:
    img.alpha_channel = False
    img.save(filename='image.png')

このエラーが発生します:

Traceback (most recent call last):
  File "file_convert.py", line 20, in <module>
    with Image(filename='sample.pdf', resolution=300, background=Color('white')) as img:
  File "/Users/Frank/.virtualenvs/wand/lib/python2.7/site-packages/wand/image.py", line 1943, in __init__
    raise TypeError("blank image parameters can't be used with image "
TypeError: blank image parameters can't be used with image opening parameters
18
Munro

PNGに変換するPDFもいくつかありました。これは私にとってはうまくいき、上記のように画像を合成するよりも簡単に思えます。

all_pages = Image(blob=self.pdf)        # PDF will have several pages.
single_image = all_pages.sequence[0]    # Just work on first page
with Image(single_image) as i:
    i.format = 'png'
    i.background_color = Color('white') # Set white background.
    i.alpha_channel = 'remove'          # Remove transparency and replace with bg.

参照: wand.image

10
Manuel Riel

前の回答 から、背景色で空の画像を作成してから、合成します。

from wand.image import Image
from wand.color import Color

with Image(filename="sample.pdf", resolution=300) as img:
  with Image(width=img.width, height=img.height, background=Color("white")) as bg:
    bg.composite(img,0,0)
    bg.save(filename="image.png")
9
emcconville

他の答えをコンパイルすると、PDFをページに変換するために使用する関数があります:

import os
from wand.image import Image
from wand.color import Color


def convert_pdf(filename, output_path, resolution=150):
    """ Convert a PDF into images.

        All the pages will give a single png file with format:
        {pdf_filename}-{page_number}.png

        The function removes the alpha channel from the image and
        replace it with a white background.
    """
    all_pages = Image(filename=filename, resolution=resolution)
    for i, page in enumerate(all_pages.sequence):
        with Image(page) as img:
            img.format = 'png'
            img.background_color = Color('white')
            img.alpha_channel = 'remove'

            image_filename = os.path.splitext(os.path.basename(filename))[0]
            image_filename = '{}-{}.png'.format(image_filename, i)
            image_filename = os.path.join(output_path, image_filename)

            img.save(filename=image_filename)
6
Thibaut Mattio

もう1つの答え(白い画像と合成する)は機能しますが、アルファチャネルを直接設定する場合と同様に、最後のページでのみ機能します。以下は、杖0.4.2で動作します。

im = wand_image(filename='/tmp/foo.pdf', resolution=200)
for i, page in enumerate(im.sequence):
    with wand_image(page) as page_image:
        page_image.alpha_channel = False
        page_image.save(filename='/tmp/foo.pdf.images/page-%s.png' % i)

これはおそらく杖のバグだと思います。 PDF should)のアルファチャネルを設定すると、すべてのページに影響を与えるようですが、そうではありません。

2

まだこれに問題がある人のために、私は解決策を見つけました(バージョン0.4.1以降で動作します。以前のバージョンについてはわかりません)。したがって、次のようなものを使用する必要があります。

with Image(filename='sample.pdf', resolution=300) as img:
img.background_color = Color("white")
img.alpha_channel = 'remove'
img.save(filename='image.png')
2
ands