Image editing
Command-line tools for modifying and manipulating images, such as resizing, blurring, or changing colorspace. Use this skill whenever the user mentions modifying images, converting to grayscale, or changing image properties.From its SKILL.md
npx -y skills add cxcscmu/SkillLearnBench --skill image-editingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.7 KB, 122 tokens by cl100k_base, as published. Nobody here has run it
Image Editing using ImageMagick
Use the convert command to modify images.
Useful image operations
-
Convert to Grayscale: Use
-colorspace Gray. Example to edit in-place:convert input.png -colorspace Gray input.png -
Resize:
-resize 50%or-resize 256x256 -
Format conversion:
convert -format jpg *.png
Dependencies
- convert: Run
sudo apt install imagemagickto install. After that, you can useconvertcommand.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.