← ClaudeAtlas

image-fetcherlisted

Fetch and download images from the internet in various formats (JPG, PNG, GIF, WebP, BMP, SVG, etc.). Use when users ask to download images, fetch images from URLs, save images from the web, or get images for embedding in documents or chats. Supports single and batch downloads with automatic format detection.
bloody2634/claud-skills · ★ 4 · AI & Automation · score 67
Install: claude install-skill bloody2634/claud-skills
# Image Fetcher Skill This skill enables Claude to fetch and download images from the internet with support for multiple image formats and batch downloading capabilities. ## When to Use This Skill Use this skill when the user requests: - Downloading images from specific URLs - Fetching images from the web to embed in documents - Saving images locally from internet sources - Batch downloading multiple images - Converting or processing images that need to be downloaded first ## Supported Image Formats The skill automatically detects and handles these formats: - JPG/JPEG - PNG - GIF - WebP - BMP - SVG - ICO - TIFF/TIF ## Core Workflows ### Single Image Download To download a single image from a URL: ```bash python scripts/fetch_image.py <image_url> [output_directory] [filename] ``` **Parameters:** - `image_url` (required): URL of the image to download - `output_directory` (optional): Directory to save the image (defaults to current directory) - `filename` (optional): Custom filename for the saved image (defaults to URL filename) **Examples:** ```bash # Basic download to current directory python scripts/fetch_image.py https://example.com/photo.jpg # Download to specific directory python scripts/fetch_image.py https://example.com/photo.jpg ./downloads # Download with custom filename python scripts/fetch_image.py https://example.com/photo.jpg ./downloads myimage.jpg ``` ### Batch Image Download To download multiple images from a list of URLs: ```bash python scripts/