PyMuPDF icon indicating copy to clipboard operation
PyMuPDF copied to clipboard

PyMuPDF is a high performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents.

Results 162 PyMuPDF issues
Sort by recently updated
recently updated
newest added

When I run `doc.subset_fonts()` I get the following on stdout/stderr (didn't check which): ``` Built subset of font 'Droid Sans Fallback Regular'. ``` Is it possible to suppress this output?...

enhancement

**Is your feature request related to a problem? Please describe.** It is not possible to use `pymupdf` installed via pip with a mupdf installed through `nix-darwin` without creating symlinks to...

enhancement
question

```python from fitz import * doc = fitz.open() pg = doc.new_page() pg.draw_rect(Rect(100, 100, 190, 200), color=(1,0,0), width=5) pg.draw_rect(Rect(200, 100, 290, 200), color=(0,0,0), width=5) pg.draw_rect(Rect(300, 100, 390, 200), width=5) doc.save("foo.pdf") ```...

bug

I've been porting to the "new" TextWriter (which is nice BTW!) Found the following behaviour, when using `fontname="Helvetica"` (which on reading the docs, doesn't look right but has been working...

bug

### Description of the bug Just wanted to report this - I think I do not need further support on this for now: I have been using `import fitz` in...

postpone

This PR makes the following improvements to the logging logic of the `fitz` module: 1. Removes some commented-out `print()` / `log()` call, which are no longer necessary. 2. Logs by...

### Description of the bug I use a code that populates the widget fields of a pdf through an excel database. However it started to change the default font and...

### Description of the bug I have a PDF file with the following two squares, each one formed by two triangles: ```pdf q 1 0 0 1 300 100 cm...

bug
fix developed