PyMuPDF 1.8.0
Release date: Nov 15th, 2015
- Ruikai Liu
- Jorj X. McKie
This is the new version 1.8 of PyMuPDF (formerly python-fitz), a Python binding which supports MuPDF 1.8 - "a lightweight PDF and XPS viewer".
MuPDF can access files in PDF, XPS, OpenXPS and EPUB (e-book) formats, and it is known for its top performance and high rendering quality.
With PyMuPDF you therefore can also access files with extensions *.pdf
, *.xps
, *.oxps
or *.epub
from your Python scripts.
Normally it should be as easy as running python setup.py install
once MuPDF is in place (i.e. its binaries have been built / generated or have been made available otherwise).
Refer to this document for details.
AUR: https://aur.archlinux.org/packages/python2-pymupdf/
Since MuPDF v1.8 is not available yet in the official repo, you need to first build it from source. Make sure to add -fPIC
to CFLAGS when compiling.
When MuPDF is ready, edit setup.py
in PyMuPDF and comment out the line of library_dirs=[]
to specify the directory which contains libmupdf.a
and other 3rd party libraries. Remove crypto
from libraries
in setup.py
if it complains.
First please make sure that the dependencies are satisfied: brew install mupdf-tools jpeg jbig2dec freetype openssl
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.
You can download pre-generated binaries from here that are suitable for your Python version, and thereby avoid any compilation hassle. Please refer to this document for details.
Please have a look at the basic demos or the examples which contain complete, working programs.
You can also access the complete documentation as a PDF or as a Windows compiled html.
PyMuPDF is distributed under GNU GPL v3.
You can also find PyMuPDF on the Python Package Index PyPI.
We invite you to join our efforts by contributing to the the wiki pages.
Please submit comments or any issues either to this site or by sending an e-mail to the authors Ruikai Liu, Jorj X. McKie.