medrag / docs /document_loader /image_loader /pymupdf_img_loader.md
mratanusarkar's picture
update: docs with lib sources and notes
e6f2eb8
|
raw
history blame
766 Bytes

Load images from PDF files (using PyMuPDF)

??? note "Note" Underlying Library: pymupdf

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

You can interact with the underlying library and fine-tune the outputs via `**kwargs`.

Use it in our library with:
```python
from medrag_multi_modal.document_loader.image_loader import PyMuPDFImageLoader
```

For details, please refer to the sources below.

**Sources:**

- [Docs](https://pymupdf.readthedocs.io/en/latest/)
- [GitHub](https://github.com/pymupdf/PyMuPDF)
- [PyPI](https://pypi.org/project/PyMuPDF/)

::: medrag_multi_modal.document_loader.image_loader.pymupdf_img_loader