Image
Core functionality module for generating and processing image content
clawhub install imageCheck image DPI resolution to ensure design assets meet output quality standards
# Install Skill (downloads SKILL.md to .claude/skills/) clawhub install dpi-upscaler-checker # Then just tell Claude: "use Dpi Upscaler Checker to help me..."
# Same install command — works with all SKILL.md-compatible AI coding tools clawhub install dpi-upscaler-checker
This Skill is compatible with the OpenClaw standard. After installation, a SKILL.md file is auto-generated, usable by any OpenClaw-compatible AI Agent (Claude Code, Cursor, Windsurf, etc.).
python scripts/main.py check --input image.jpg
python scripts/main.py check --input ./images/ --output report.json
python scripts/main.py upscale --input image.jpg --output upscaled.jpg --scale 4
python scripts/main.py upscale --input ./images/ --output ./output/ --min-dpi 300 --scale 2
--input | string | - | Yes | Input image path or folder |
| --output | string | stdout | No | Output report path |
| --target-dpi | int | 300 | No | Target DPI threshold |--input | string | - | Yes | Input image path or folder |
| --output | string | - | Yes | Output path |
| --scale | int | 2 | No | Scale factor (2/3/4) |
| --min-dpi | int | - | No | Only process images below this DPI |
| --denoise | int | 0 | No | Denoise level (0-3) |
| --face-enhance | flag | false | No | Enable face enhancement |{
"file": "image.jpg",
"dpi": [72, 72],
"width_px": 1920,
"height_px": 1080,
"print_width_cm": 67.7,
"print_height_cm": 38.1,
"meets_300dpi": false,
"recommended_scale": 4.17
}
<original_filename>_upscaled.<extension>Actual DPI = Pixel dimensions / Physical dimensions
Print size (cm) = Pixel count / DPI * 2.54
# Python dependencies
pip install -r requirements.txt
clawhub dpi-upscaler-checker --image ./marketing-banner.png --output-report dpi-report.jsonUpload images to img402.dev and get a public URL. Free tier: 1MB max, 7-day retention, no auth. Use when the agent needs a hosted image URL — for sharing in messages, embedding in documents, posting to social platforms, or any context that requires a public link to an image file.
clawhub install image-hosting