image-resize

star 55

Resize and crop images using ImageMagick in the shared volume at {{SHARED_VOLUME}}.

bidewio By bidewio schedule Updated 2/21/2026

name: image-resize description: "Resize and crop images using ImageMagick in the shared volume at {{SHARED_VOLUME}}." metadata: openclaw: emoji: "🖼️"


Image Resize

Process images from the shared volume at {{SHARED_VOLUME}}.

Resize

convert {{SHARED_VOLUME}}/input/photo.jpg -resize 800x600 {{SHARED_VOLUME}}/output/resized.jpg
convert {{SHARED_VOLUME}}/input/photo.jpg -resize 50% {{SHARED_VOLUME}}/output/half.jpg

Crop

convert {{SHARED_VOLUME}}/input/photo.jpg -crop 400x300+100+50 {{SHARED_VOLUME}}/output/cropped.jpg

Tips for AI Agents

  • Use ! after dimensions to force exact size: -resize 800x600!.
  • Use -gravity center -extent 800x600 for centered crops with padding.
Install via CLI
npx skills add https://github.com/bidewio/better-openclaw --skill image-resize
Repository Details
star Stars 55
call_split Forks 8
navigation Branch main
article Path SKILL.md
More from Creator