Install
openclaw skills install @maverick-ai-tech/pymupdfRender 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. For text extraction, splitting, merging, or rotating PDFs, use the pypdf skill instead.
openclaw skills install @maverick-ai-tech/pymupdfUse scripts/pymupdf_cli.py for deterministic pymupdf operations instead of ad-hoc fitz snippets.
python scripts/pymupdf_cli.py export-images --input <file.pdf> --output-dir <dir/>--format png (default), jpg, or ppm.--dpi 300 (default: 150).--pages 0 1 2.python scripts/pymupdf_cli.py extract-images --input <file.pdf> --output-dir <dir/>--pages 0 1 2.python scripts/pymupdf_cli.py info --input <file.pdf>export-images renders each page as a raster image at the specified DPI.extract-images saves raw image streams embedded in the PDF (e.g. photos, logos); output filenames include page index and image index.pip install pymupdf.