Image Files
Installation
SKILL.md
Image Files
Instructions
When helping users work with image files, follow these guidelines:
-
Tool Availability: ImageMagick is installed and available on the system path. Use
magickcommand (modern syntax) or legacy commands (convert,identify,mogrify) If it is not on the path look in C:\Program Files\ImageMagick-7.1.2-Q16-HDRI -
Modern vs Legacy Syntax:
- Modern (ImageMagick 7+):
magick convert input.jpg output.png - Legacy (ImageMagick 6):
convert input.jpg output.png - Try modern syntax first, fall back to legacy if command not found
- Modern (ImageMagick 7+):