2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PyMuPDFを使ってPDFを分解してPNGにする

Posted at

背景

  • PythonでPDFをページごとに分割し、PNGファイルに変換したい場合
  • pypdfpdfminerなどいくつかPDFを操作するPythonライブラリは存在したのですが、Google Trendsで勢いのあったpyMuPDFを使ってみることにします
    スクリーンショット 2024-02-20 10.40.46.png
  • 他のライブラリに比べてドキュメントも一番ちゃんとしているように見えます

実装

import fitz
from io import BytesIO

class PDF:

    # pdfがテキストベースのものか画像ベースのものか判断する
    def is_text_base(self, file: BytesIO) -> bool:
        doc = fitz.open(stream=file.getvalue(), filetype="pdf")
        return (len(doc[0].get_text().encode("utf8")) > 0)

    # pdfの各ページをpngとしてローカルに保存します
    def convert_to_png_files(self, file: BytesIO) -> None:
        doc = fitz.open(stream=file.getvalue(), filetype="pdf")
        for page in doc:
            pix = page.get_pixmap()
            file_path = f"./page_{page.number}.png"
            pix.save(file_path)
        return

if __name__ == "__main__":
    pdf = PDF()
    with open('path/to/hoge.pdf', 'rb') as f:
        if pdf.is_text_base(f):
            pdf.convert_to_png_files(f)
        
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?