원클릭으로
imagemagick-cli
Use ImageMagick (magick/convert) to resize, crop, convert, annotate, and process images from the terminal.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use ImageMagick (magick/convert) to resize, crop, convert, annotate, and process images from the terminal.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | imagemagick-cli |
| description | Use ImageMagick (magick/convert) to resize, crop, convert, annotate, and process images from the terminal. |
Image manipulation toolkit. Resize, crop, convert, composite, and annotate images in 200+ formats.
magick input.png output.jpg # PNG to JPEG
magick input.svg output.png # SVG to PNG
magick input.webp output.png # WebP to PNG
magick *.jpg output.pdf # Multiple images to PDF
magick input.png -resize 800x600 output.png # Resize to fit within 800x600
magick input.png -resize 50% output.png # Scale to 50%
magick input.png -resize 800x600! output.png # Force exact dimensions (distort)
magick input.png -resize 800x600^ -gravity center -extent 800x600 output.png # Fill and crop
magick input.png -crop 400x300+100+50 output.png # Crop 400x300 at offset (100,50)
magick input.png -gravity center -crop 400x300+0+0 output.png # Center crop
magick input.png -trim output.png # Auto-trim whitespace
magick input.png -quality 85 output.jpg # JPEG quality
magick input.png -strip output.png # Remove metadata
magick input.png -colors 256 output.png # Reduce colors
magick input.png -pointsize 24 -fill white -gravity south -annotate +0+10 "Caption" output.png
magick input.png -fill red -draw "circle 100,100 150,100" output.png
magick base.png overlay.png -gravity southeast -composite output.png
magick base.png -page +10+10 watermark.png -flatten output.png
magick mogrify -resize 800x600 -path ./resized *.jpg # Batch resize to directory
magick mogrify -format png *.jpg # Batch convert format
magick identify input.png # Basic info
magick identify -verbose input.png # Detailed info
magick identify -format "%wx%h" input.png # Just dimensions
magick (v7) instead of convert (v6 legacy)magick identify to inspect images before processingmagick mogrify for in-place or batch operations-strip to remove EXIF data for smaller files-quality 85 for JPEG - good balance of size and quality-gravity with -extent for precise croppingmagick input.jpg -resize 200x200^ -gravity center -extent 200x200 -quality 85 thumb.jpg
magick identify -format "%w %h" input.png