Resize, crop, convert, and optimize images using ImageMagick. Use when processing photos, converting formats (PNG/WebP), compressing size, or adding watermarks.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add bytesagain/ai-skills --skill vision --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Vision?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/bytesagain-vision)More formats (shields.io, HTML) on the badges page.
---
name: "Vision — Image Processing, Resize, Convert & Watermark"
description: "Resize, crop, convert, and optimize images using ImageMagick. Use when processing photos, converting formats (PNG/WebP), compressing size, or adding watermarks."
version: "3.5.0"
author: BytesAgain
homepage: https://bytesagain.com
source: https://github.com/bytesagain/ai-skills
tags: ["vision", "image-processing", "resize", "crop", "convert", "optimize", "exif", "watermark", "图像处理"]
---
# vision
Image processing toolkit powered by ImageMagick.
## Quick Start / 快速开始
Just ask your AI assistant: / 直接告诉 AI 助手:
- "Resize photo.jpg to 800px width" (帮我把 photo.jpg 缩小到 800 宽)
- "Convert this PNG to WebP format" (把这张 PNG 图片转换成 WebP 格式)
- "Add watermark: © 2025 BytesAgain" (给这张图加个水印)
## Commands
### resize
Resize an image.
```bash
bash scripts/script.sh resize --input photo.jpg --width 800
bash scripts/script.sh resize --input photo.jpg --percent 50
```
### convert
Change image formats.
```bash
bash scripts/script.sh convert --input photo.png --to webp
bash scripts/script.sh convert --input photo.jpg --to png
```
### optimize
Compress file size without losing quality.
```bash
bash scripts/script.sh optimize --input photo.jpg --quality 80
```
### watermark
Add text watermark to images.
```bash
bash scripts/script.sh watermark --input photo.jpg --text "© 2025" --position southeast
```
## Requirements
- bash 4+
- ImageMagick (convert, identify)
## Feedback
https://bytesagain.com/feedback/
Powered by BytesAgain | bytesagain.com
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!