PyMuPDF is a Python binding with support for MuPDF

Overview

PyMuPDF 1.18.14

logo

Release date: June 1, 2021

Travis-CI: Build Status

On PyPI since August 2016: Downloads

Authors

Introduction

PyMuPDF (current version 1.18.14) is a Python binding with support for MuPDF (current version 1.18.*), a lightweight PDF, XPS, and E-book viewer, renderer, and toolkit, which is maintained and developed by Artifex Software, Inc.

MuPDF can access files in PDF, XPS, OpenXPS, CBZ, EPUB and FB2 (e-books) formats, and it is known for its top performance and high rendering quality.

With PyMuPDF you can access files with extensions like ".pdf", ".xps", ".oxps", ".cbz", ".fb2" or ".epub". In addition, about 10 popular image formats can also be handled like documents: ".png", ".jpg", ".bmp", ".tiff", etc..

In partnership with Artifex, PyMuPDF is now also available for commercial licensing. This agreement has no impact on use cases, that are compliant with the open-source license AGPL. Please see the "License and Copyright" section below for additional information.

Usage and Documentation

For all supported document types (i.e. including images) you can

  • decrypt the document
  • access meta information, links and bookmarks
  • render pages in raster formats (PNG and some others), or the vector format SVG
  • search for text
  • extract text and images
  • convert to other formats: PDF, (X)HTML, XML, JSON, text

To some degree, PyMuPDF can therefore be used as an image converter: it can read a range of input formats and can produce Portable Network Graphics (PNG), Portable Anymaps (PNM, etc.), Portable Arbitrary Maps (PAM), Adobe Postscript and Adobe Photoshop documents, making the use of other graphics packages obselete in these cases. But interfacing with e.g. PIL/Pillow for image input and output is easy as well.

For PDF documents, there exists a plethorea of additional features: they can be created, joined or split up. Pages can be inserted, deleted, re-arranged or modified in many ways (including annotations and form fields).

  • Images and fonts can be extracted or inserted.

    You may want to have a look at this cool GUI example script, which lets you insert, delete, replace or re-position images under your visual control.

    Since v1.18.8 there is a new experimental Document method subset_fonts(), which automatically builds subsets based on the usage of all eligible fonts in the document. Especially for new documents, this can lead to significant file size reductions. The method was developed in cooperation with our user @cuteufo - again thanks a lot for the contribution.

  • Embedded files are fully supported.

  • PDFs can be reformatted to support double-sided printing, posterizing, applying logos or watermarks

  • Password protection is fully supported: decryption, encryption, encryption method selection, permmission level and user / owner password setting.

  • Support of the PDF Optional Content concept for images, text and drawings.

  • Low-level PDF structures can be accessed and modified.

  • PyMuPDF can also be used as a module in the command line using "python -m fitz ...". This is a versatile utility, which we will further develop going forward. It currently supports PDF document

    • encryption / decryption / optimization
    • creating sub-documents
    • document joining
    • image / font extraction
    • full support of embedded files.

Have a look at the basic demos, the examples (which contain complete, working programs), and the recipes section of our Wiki sidebar, which contains more than a dozen of guides in How-To-style.

Our documentation, written using Sphinx, is available in various formats from the following sources. It currently is a combination of a reference guide and a user manual. For a quick start look at the tutorial and the recipes chapters.

  • You can view it online at Read the Docs. This site also provides download options for PDF.
  • The search function on Read the Docs does not work for me currently. If you want a working searchable local version, please download a zipped HTML for here.
  • Find a Windows help file here.

Installation

For Windows, Linux and Mac OSX platforms, there are wheels in the download section of PyPI. This includes Python 64bit versions 3.6 through 3.9. For Windows only, 32bit versions are available too. Since version 1.18.14 there also exist wheels for the Linux ARM architecture - look for platform tag manylinux2014_aarch64.

If your platform is not supported with one of our wheels, you need to generate PyMuPDF yourself as follows. This requires the development version of Python.

Before you can do that, you must first build MuPDF. For most platforms, the MuPDF sources contain prepared procedures for achieving this. Please observe the following general steps:

  • Be sure to download the official MuPDF source release from here. Do not use MuPDF's GitHub repo. It contains their development source for future versions.

  • This repo's fitz folder contains one or more files whose names start with a single underscore "_". These files contain configuration data and potentially other fixes. Copy-rename each of them to their correct target location within the downloaded MuPDF source. Currently, these files are:

    • Optional: fitz configuration file _config.h copy-replace to: mupdf/include/mupdf/fitz/config.h. It contains configuration data like e.g. which fonts to support. If omitting this change, the binary extension module will be over 30 MB (compared to around 11 MB). Does not impact functionality.

    • Now MuPDF can be generated.

  • Please note that you will need the interface generator SWIG when building PyMuPDF from the sources of this repository (please refer to issue #312 for some background on this).

    • PyMuPDF wheels are being generated using SWIG v4.0.2.
  • If you do not use SWIG, please download the sources from PyPI - they contain sources pre-processed by SWIG, so installation should work like any other Python extension generation on your system.

Once this is done, adjust directories in setup.py and run python setup.py install.

The following sections contain further comments for some platforms.

Ubuntu

Our users (thanks to @gileadslostson and @jbarlow83!) have documented their MuPDF installation experiences from sources in this Wiki page.

OSX

First, install the MuPDF headers and libraries, which are provided by mupdf-tools: brew install mupdf-tools.

Then you might need to export ARCHFLAGS='-arch x86_64', since libmupdf.a is for x86_64 only.

Finally, please double check setup.py before building. Update include_dirs and library_dirs if necessary.

MS Windows

If you are looking to make your own binary, consult this Wiki page. It explains how to use Visual Studio for generating MuPDF in quite some detail.

Earlier Versions

Earlier versions are available in the releases directory.

License and Copyright

In order to comply with MuPDF’s dual licensing model, PyMuPDF has entered into an agreement with Artifex who has the right to sublicense PyMuPDF to third parties.

PyMuPDF and MuPDF are now available under both, open-source AGPL and commercial license agreements.

Please read the full text of the AGPL license agreement (which is also included here in file COPYING) to ensure that your use case complies with the guidelines of this license. If you determine you cannot meet the requirements of the AGPL, please contact Artifex for more information regarding a commercial license.

Artifex is the exclusive commercial licensing agent for MuPDF.

Artifex, the Artifex logo, MuPDF, and the MuPDF logo are registered trademarks of Artifex Software Inc. © 2021 Artifex Software, Inc. All rights reserved.

Contact

Please use the Discussions menu for questions, comments, or asking others for help, and submit issues here. If you wish, you can also contact me directly via [email protected].

Comments
  • Wrong Handling of Reference Count of

    Wrong Handling of Reference Count of "None" Object

    I'm iterating all xrefs found in the pdf to determine their "content":

    document = fitz.Document(fileName)
    nonImageXrefs = []
    imageXrefs = []
    
    allXrefsLength = document.xref_length()
    for xref in range(1, allXrefsLength):
        if document.xref_get_key(xref, "Subtype")[1] == "/Image":
            if document.extract_image(xref):
                imageXrefs.append(xref)
        else:
            rawData = document.xref_stream_raw(xref)
            if rawData is None or len(rawData) == 0:
                print("xref {0} is neither image nor deflatable stream".format(xref))
            else:
                nonImageXrefs.append(xref)
    

    And when there are lot's of such actions I'm getting following error:

    Fatal Python error: none_dealloc: deallocating None
    Python runtime state: initialized
    
    Current thread 0x00002b44 (most recent call first):
      File "C:\Program Files\Python\lib\pdfUtils.py", line 592 in optimizeWithPyMuPdf
      File "C:\Users\Alex\PycharmProjects\pdfOptimizer\pdf_opt.py", line 8 in <module>
    
    Extension modules: fitz._fitz, zopfli.zopfli, PIL._imaging (total: 3)
    
    Process finished with exit code -1073740791 (0xC0000409)
    

    Line 592 is rawData = document.xref_stream_raw(xref)

    This happens in random place of xrefs list, but usual counter is between 11000-13000

    I'm using Windows 10, python 3.10 x64, pyMuPDF 1.21.1 installed by pip.

    Attached sample file, but as far as I can see it is not caused by some specific file. eos6d-mk2-im2-en1.pdf

    bug Fixed in next release 
    opened by AlexMatiash 2
  • Replace image throws an error

    Replace image throws an error

    Please provide all mandatory information!

    Describe the bug (mandatory)

    Using the replace_image method on the Page object fails with an error for a missing method on the Document object.

    To Reproduce (mandatory)

    >>> fitz_doc = fitz.open("/Users/ashah/GoogleDrive/YearbookCreatorInput/Test_School.pdf")
    >>> page6 = fitz_doc.load_page(7)
    >>> page6.get_images()
    [(112, 0, 1985, 1600, 8, 'ICCBased', '', 'Im55', 'DCTDecode'), (113, 0, 1800, 1200, 8, 'ICCBased', '', 'Im56', 'DCTDecode'), (114, 0, 2100, 1402, 8, 'ICCBased', '', 'Im57', 'DCTDecode'), (115, 0, 808, 1436, 8, 'ICCBased', '', 'Im58', 'DCTDecode'), (90, 0, 1800, 1200, 8, 'ICCBased', '', 'Im48', 'DCTDecode'), (95, 0, 1200, 1800, 8, 'ICCBased', '', 'Im53', 'DCTDecode'), (117, 121, 1767, 1144, 8, 'ICCBased', '', 'Im59', 'FlateDecode'), (92, 0, 1200, 1800, 8, 'ICCBased', '', 'Im50', 'DCTDecode'), (118, 122, 1365, 1365, 8, 'ICCBased', '', 'Im60', 'FlateDecode'), (119, 123, 924, 1159, 8, 'ICCBased', '', 'Im61', 'FlateDecode')]
    >>> page6.replace_image(95, filename='/Users/ashah/GoogleDrive/Test_School/blank.png')
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
      File "/usr/local/lib/python3.10/site-packages/fitz/utils.py", line 255, in replace_image
        if not doc.is_image(xref):
    AttributeError: 'Document' object has no attribute 'is_image'
    

    For problems when building or installing PyMuPDF, give the full output of the build/install command so that, for example, all pip/compiler/linker errors/warnings can be seen.

    Expected behavior (optional)

    Describe what you expected to happen (if not obvious).

    Screenshots (optional)

    If applicable, add screenshots to help explain your problem.

    Your configuration (mandatory)

    • Operating system, potentially version and bitness
    • Python version, bitness
    • PyMuPDF version, installation method (wheel or generated from source).

    print(sys.version, "\n", sys.platform, "\n", fitz.doc) 3.10.6 (main, Aug 11 2022, 13:49:25) [Clang 13.1.6 (clang-1316.0.21.2.5)] darwin

    PyMuPDF 1.21.1: Python bindings for the MuPDF 1.21.1 library. Version date: 2022-12-13 00:00:01. Built for Python 3.10 on darwin (64-bit).

    For example, the output of print(sys.version, "\n", sys.platform, "\n", fitz.__doc__) would be sufficient (for the first two bullets).

    Additional context (optional)

    Add any other context about the problem here.

    bug Fixed in next release 
    opened by foranuj 1
  • Failed to read JPX header when trying to get blocks

    Failed to read JPX header when trying to get blocks

    Describe the bug (mandatory)

    When I'm trying to get blocks from some pdfs, the following error occurs: RuntimeError: Failed to read JPX header. The same error occurs when I'm trying to get the pixmap with the function get_pixmap.

    It works if I use page.gettext() without block or dict parameter.

    PDFs with this error have the following attributes:

    • Producer: GPL Ghostscript 9.23
    • PDF Version: 1.5

    If I edit the PDF file with any online tool, for example https://www.sejda.com/pdf-editor, the attributes change and the error disappears.

    To Reproduce (mandatory)

    PDF file - test_get_blocks.pdf

    import fitz
    
    with fitz.open("test_get_blocks.pdf") as doc:
        for page in doc:
            print(page.get_text("blocks"))
    

    Traceback

    Traceback (most recent call last):
      File "/home/johni/Projects/pdf-to-txt/main.py", line 5, in <module>
        print(page.get_text("dict"))
      File "/home/johni/.pyenv/versions/3.9.15/lib/python3.9/site-packages/fitz/utils.py", line 808, in get_text
        tp = page.get_textpage(clip=clip, flags=flags)
      File "/home/johni/.pyenv/versions/3.9.15/lib/python3.9/site-packages/fitz/fitz.py", line 5675, in get_textpage
        textpage = self._get_textpage(clip, flags=flags, matrix=matrix)
      File "/home/johni/.pyenv/versions/3.9.15/lib/python3.9/site-packages/fitz/fitz.py", line 5661, in _get_textpage
        val = _fitz.Page__get_textpage(self, clip, flags, matrix)
    RuntimeError: Failed to read JPX header
    

    Notebook to reproduce the error

    Your configuration (mandatory)

    • Operating system Ubuntu 22.04.1 LTS
    • Python version 3.9.15
    • PyMuPDF version 1.21.1
    upstream bug 
    opened by johnidm 4
  • 1.21.1: test_color_count fails

    1.21.1: test_color_count fails

    Please provide all mandatory information!

    Describe the bug (mandatory)

    test_color_count fails

    To Reproduce (mandatory)

      export PYMUPDF_SETUP_MUPDF_BUILD=""
      python -m build --wheel --no-isolation
    
      local _site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
      local _test_dir="test_dir"
    
      cd $_name-$pkgver
      mkdir -vp $_test_dir
      # install to test dir for testing
      python -m installer --destdir="$_test_dir" dist/*.whl
    
      export PYTHONPATH="$_test_dir/$_site_packages:$PYTHONPATH"
      # disable broken test: https://github.com/pymupdf/PyMuPDF/issues/2040
      pytest -vv -c /dev/null tests/ -k 'not test_textbox3'
    
    =================================== FAILURES ===================================
    _______________________________ test_color_count _______________________________
    
        def test_color_count():
            pm = fitz.Pixmap(imgfile)
    >       assert pm.color_count() == 40624
    E       assert 39912 == 40624
    E        +  where 39912 = <bound method Pixmap.color_count of Pixmap(DeviceRGB, IRect(0, 0, 439, 501), 0)>()
    E        +    where <bound method Pixmap.color_count of Pixmap(DeviceRGB, IRect(0, 0, 439, 501), 0)> = Pixmap(DeviceRGB, IRect(0, 0, 439, 501), 0).color_count
    
    tests/test_pixmap.py:94: AssertionError
    =============================== warnings summary ===============================
    ../../../../usr/lib/python3.10/site-packages/_pytest/cacheprovider.py:433
      /usr/lib/python3.10/site-packages/_pytest/cacheprovider.py:433: PytestCacheWarning: could not create cache path /dev/.pytest_cache/v/cache/nodeids
        config.cache.set("cache/nodeids", sorted(self.cached_nodeids))
    
    ../../../../usr/lib/python3.10/site-packages/_pytest/cacheprovider.py:387
      /usr/lib/python3.10/site-packages/_pytest/cacheprovider.py:387: PytestCacheWarning: could not create cache path /dev/.pytest_cache/v/cache/lastfailed
        config.cache.set("cache/lastfailed", self.lastfailed)
    
    ../../../../usr/lib/python3.10/site-packages/_pytest/stepwise.py:52
      /usr/lib/python3.10/site-packages/_pytest/stepwise.py:52: PytestCacheWarning: could not create cache path /dev/.pytest_cache/v/cache/stepwise
        session.config.cache.set(STEPWISE_CACHE_DIR, [])
    
    -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
    =========================== short test summary info ============================
    FAILED ../../../../dev/test_pixmap.py::test_color_count - assert 39912 == 40624
    ====== 1 failed, 95 passed, 1 skipped, 1 deselected, 3 warnings in 1.65s =======
    

    python-pymupdf-1.21.1-1-x86_64-build.log python-pymupdf-1.21.1-1-x86_64-check.log

    Expected behavior (optional)

    All tests pass.

    Screenshots (optional)

    n/a

    Your configuration (mandatory)

    • Arch Linux
    • Python 3.10.8
    • PyMuPDF 1.21.1 from tarball

    Additional context (optional)

    n/a

    opened by dvzrv 2
  • Redaction removing more text than expected

    Redaction removing more text than expected

    Describe the bug (mandatory)

    When applying a redaction on a document, the following word is removed as well.

    To Reproduce (mandatory)

    Example PDF file: test_doc.pdf

    Run this script:

    import fitz
    doc = fitz.open("test_doc.pdf")
    page = doc[0]
    areas = page.search_for("{sig}")
    rect = areas[0]
    page.add_redact_annot(rect)
    page.apply_redactions()
    doc.saveIncr()
    doc.close()
    

    The searched word "{sig}" is removed (as expected). The word "Vertrag" on the top right is removed as well (unexpected).

    Expected behavior (optional)

    Searched string should be removed. No other change should be made.

    Screenshots (optional)

    Before script: grafik After script: grafik

    Your configuration (mandatory)

    • OS independant, happening on Windows 11 as well as Debian 11
    • Python Python 3.10.8
    • PyMuPDF 1.21.0, installed via pip

    Thank you!

    upstream bug 
    opened by seb-bau 3
  • Image in pdf changes color after applying redactions

    Image in pdf changes color after applying redactions

    Description

    Image in a PDF file changes color after applying redactions.

    To Reproduce

    Execute the following python script to reproduce the issue. The script uses this pdf file image_issue.pdf .

    import os
    import fitz
    
    script_path = os.path.abspath(__file__)
    script_folder = os.path.dirname(script_path)
    doc = fitz.open(os.path.join(script_folder, 'image_issue.pdf'))
    
    page = doc.load_page(0)
    
    rx=135.123
    ry=123.56878
    rw=69.8409
    rh=9.46397
    
    x0 = rx
    y0 = ry
    x1 = rx + rw
    y1 = ry + rh
        
    rect = fitz.Rect(x0, y0, x1, y1)
    
    font = fitz.Font("Helvetica")
    fill_color=(0,0,0)
    page.add_redact_annot(
        quad=rect,
        #text="null",
        fontname=font.name,
        fontsize=12,
        align=fitz.TEXT_ALIGN_CENTER,
        fill=fill_color,
        text_color=(1,1,1),
    )
    
    page.apply_redactions()
    
    doc.save(os.path.join(script_folder, 'image_issue_redacted.pdf'))
    

    Note that I am using the default images=2 (blank out overlapping image parts) when calling apply_redactions(). Using images= 0 (ignore) or images=1(remove complete overlapping image) are not desirable for my use case.

    Expected behavior

    The color of the image in the pdf file should not change after applying redactions.

    Screenshots

    Here's a screenshot of the problem. image

    Your configuration

    • Operating system Ubuntu 22.04.1 LTS
    • Python version 3.8.14
    • PyMuPDF version 1.20.2
    upstream bug 
    opened by ot-ksrinivasan 7
Releases(1.21.1)
Owner
PyMuPDF
This represents the central repository, PyMuPDF and related repositories
PyMuPDF
WeasyPrint is a smart solution helping web developers to create PDF documents.

WeasyPrint is a smart solution helping web developers to create PDF documents. It turns simple HTML pages into gorgeous statistical reports, invoices, tickets…

Kozea 5.4k Jan 08, 2023
Camelot is a Python library that can help you extract tables from PDFs!

A Python library to extract tabular data from PDFs

1.8k Jan 03, 2023
Table automatically extraction from PDF Document

PDF Table Extractor Table automatically extraction from PDF Document Our Icon 📌 Name : PDF Table Extractor 📌 Authors : Minku Koo Jiyong Park 📌 Deve

1 Jan 10, 2022
borb is a library for reading, creating and manipulating PDF files in python.

borb is a library for reading, creating and manipulating PDF files in python.

Joris Schellekens 2.9k Jan 01, 2023
Merge multiple PDF files into one.

PDF Merger Merge multiple PDF files into one. Usage % python pdf_merger.py -h usage: pdf_merger.py [-h] [-o OUTPUT] [-f [FILES ...]] optional argumen

Duo Apps 6 Oct 03, 2022
Camelot is a Python library that makes it easy for anyone to extract tables from PDF files

Camelot: PDF Table Extraction for Humans Camelot is a Python library that makes it easy for anyone to extract tables from PDF files! Note: You can als

Atlan Technologies Pvt Ltd 3.3k Jan 06, 2023
Auto Convert PDFs to png files in python

This python tool, which is an application of PyMuPDF module, could auto convert PDFs to png files

Bo-Yu 4 Dec 05, 2021
Python bindings for MuPDF's rendering library.

PyMuPDF 1.19.3 Release date: December 15, 2021 On PyPI since August 2016: Author Jorj X. McKie, based on original code by Ruikai Liu. Introduction PyM

Jorj X. McKie 0 Nov 03, 2022
this is simple program, that converts pdf file to png

author: a5892731 last update:2021-11-01 version: 1.1 resources: -https://pypi.org/project/pdf2image/ -https://github.com/oschwartz10612/poppler-window

1 Nov 01, 2021
PyMuPDF is a Python binding with support for MuPDF

PyMuPDF is a Python binding with support for MuPDF (current version 1.18.*), a lightweight PDF, XPS, and E-book viewer, renderer, and toolkit, which is maintained and developed by Artifex Software, I

PyMuPDF 1.9k Jan 03, 2023
x-ray is a Python library for finding bad redactions in PDF documents.

A tool to detect whether a PDF has a bad redaction

Free Law Project 73 Dec 19, 2022
Telegram bot that can do a lot of things related to PDF files.

Telegram PDF Bot A Telegram bot that can: Compress, crop, decrypt, encrypt, merge, preview, rename, rotate, scale and split PDF files Compare text dif

130 Dec 26, 2022
A tool for certificate PDF generation.

certificate-pdf-generator 获奖证书PDF批量生成工具 | a Tool for certificate PDF generation. ⚠️ 下载前请注意 本项目使用了LFS来存储PDF等大文件。在克隆或下载本仓库前,请先使用apt等包管理器安装git-lfs包。如果已经克

Wanghao Xu 4 Nov 28, 2022
Generate a bunch of malicious pdf files with phone-home functionality. Can be used with Burp Collaborator

Malicious PDF Generator ☠️ Generate ten different malicious pdf files with phone-home functionality. Can be used with Burp Collaborator. Used for pene

Jonas Lejon 1.9k Jan 01, 2023
Simple python tool created for downloading PDF.

PDFdownloader Usage Open PDF in full-screen mode Run scan.exe Enter how many pages you want to scan Focus PDF After scanning is done, run merge.exe En

5 Oct 27, 2021
Simple HTML and PDF document generator for Python - with built-in support for popular data analysis and plotting libraries.

Esparto is a simple HTML and PDF document generator for Python. Its primary use is for generating shareable single page reports with content from popular analytics and data science libraries.

Dom 76 Dec 12, 2022
Trata PDF para torná-lo compatível com PDF/X e com impressoras em escala de cinza.

tratapdf Trata PDF para torná-lo compatível com PDF/X e com impressoras em escala de cinza. dependências icc-profiles ghostscript visualizador de PDF

1 Nov 30, 2021
Python lib for Simple PDF text extraction

Python lib for Simple PDF text extraction

Jason Alan Palmer 651 Jan 01, 2023
pikepdf is a Python library for reading and writing PDF files.

A Python library for reading and writing PDF, powered by qpdf

1.6k Jan 03, 2023
Python script that split PDF files.

Automatic PDF Splitter This script can create new single-page PDFs files from multipaged PDFs. Requirements Python 3.0+ # Debian distros sudo apt-get

Leandro Padula 5 Apr 02, 2022