pymupdf
v1.0.0Render PDF pages to images, extract embedded images, annotate PDFs, and perform advanced PDF inspection using pymupdf (fitz). Use for tasks such as exporting pages as PNG/JPG, extracting images embedded in a PDF, drawing annotations, redacting content, or when high-fidelity rendering is required. Fo...
Installation
Please help me install the skill `pymupdf` from SkillHub official store.
npx skills add Maverick-AI-Tech/pymupdf
pymupdf
Use scripts/pymupdf_cli.py for deterministic pymupdf operations instead of ad-hoc fitz snippets.
Workflow
- Confirm the PDF file path is accessible locally.
- Run the desired command (export-images, extract-images, info).
- Inspect the output directory or stdout.
Command Guide
- Export pages as images:
python scripts/pymupdf_cli.py export-images --input <file.pdf> --output-dir <dir/>- Override format:
--format png(default),jpg, orppm. - Override resolution:
--dpi 300(default: 150). - Restrict to specific pages:
--pages 0 1 2. - Extract images embedded inside a PDF:
python scripts/pymupdf_cli.py extract-images --input <file.pdf> --output-dir <dir/>- Optionally restrict to specific pages:
--pages 0 1 2. - Inspect page dimensions and basic document info:
python scripts/pymupdf_cli.py info --input <file.pdf>
Operational Rules
- Pages are always 0-indexed in all commands.
export-imagesrenders each page as a raster image at the specified DPI.extract-imagessaves raw image streams embedded in the PDF (e.g. photos, logos); output filenames include page index and image index.- Install dependency if missing:
pip install pymupdf. - For text extraction, splitting, merging, or rotating PDFs, use the pypdf skill instead.