Install
openclaw skills install pymupdfRender PDF pages to images, extract embedded images, annotate PDFs, and perform advanced PDF inspection using pymupdf (fitz). Use for tasks such as exporting...
openclaw skills install 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.