skills/library/image-resize/SKILL.md
Resize, convert, and batch-process images using ImageMagick.
npx skillsauth add malue-ai/dazee-small image-resizeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
使用 ImageMagick 批量处理图片:缩放、裁剪、格式转换、压缩、拼接。
# macOS
brew install imagemagick
# Windows
winget install ImageMagick.ImageMagick
# Linux
sudo apt install imagemagick
# 按宽度缩放(保持比例)
magick input.jpg -resize 800x output.jpg
# 按百分比
magick input.jpg -resize 50% output.jpg
# 指定尺寸(可能变形)
magick input.jpg -resize 800x600! output.jpg
magick input.png output.jpg
magick input.jpg output.webp
# 批量缩放目录下所有 JPG
for f in *.jpg; do magick "$f" -resize 800x "resized_$f"; done
# 批量转格式
for f in *.png; do magick "$f" "${f%.png}.jpg"; done
# JPEG 质量压缩
magick input.jpg -quality 80 output.jpg
# 去除元数据减小体积
magick input.jpg -strip -quality 85 output.jpg
# 水平拼接
magick a.jpg b.jpg +append merged.jpg
# 垂直拼接
magick a.jpg b.jpg -append merged.jpg
magick input.jpg -gravity SouthEast -fill white -pointsize 24 \
-annotate +10+10 "© 2026" output.jpg
development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.