Toolverse
All skills

image-manipulation-image-magick

by github

Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.

Installation

Pick a client and clone the repository into its skills directory.

Installation

Quick info

Author
github
Category
Backend
Views
29

About this skill

Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.

How to use

  1. Zainstaluj ImageMagick na swoim systemie. Na Windows pobierz instalator z oficjalnej strony i upewnij się, że polecenie magick jest dostępne w PATH lub w katalogu C:\Program Files\ImageMagick-*\. Na Linux/macOS użyj menedżera pakietów (apt, brew) do instalacji.

  2. Sprawdź, czy ImageMagick jest poprawnie skonfigurowany. Na Windows otwórz PowerShell i uruchom Get-Command magick, aby potwierdzić dostępność. Na Linux/macOS w terminalu Bash wpisz which magick lub magick -version.

  3. Aby zmienić rozmiar pojedynczego obrazu, użyj polecenia magick input.jpg -resize 800x600 output.jpg. Zastąp nazwy plików i wymiary własnymi wartościami.

  4. Do przetwarzania wsadowego wielu obrazów — na przykład zmianę rozmiaru wszystkich JPG w folderze — użyj pętli. Na PowerShell: Get-ChildItem *.jpg | ForEach-Object { magick $_.Name -resize 1024x768 resized_$_.Name }. Na Bash: for file in *.jpg; do magick "$file" -resize 1024x768 "resized_$file"; done.

  5. Aby pobrać informacje o obrazie (wymiary, format, metadane), uruchom magick identify image.jpg. Wynik pokaże szerokość, wysokość, format i inne szczegóły.

  6. Do konwersji formatu obrazu między różnymi typami (JPG, PNG, WebP itp.) wpisz magick input.jpg output.png. ImageMagick automatycznie rozpozna format na podstawie rozszerzenia pliku.

Related skills

fastapi-pro

by sickn33

Build high-performance async APIs with FastAPI, SQLAlchemy 2.0, and Pydantic V2. Master microservices, WebSockets, and modern Python async patterns. Use PROACTIVELY for FastAPI development, async optimization, or API architecture.

Backend
54128

scientific-writing

by K-Dense-AI

Write scientific manuscripts. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), abstracts, for research papers and journal submissions.

Backend
47191

fastapi-templates

by wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

Backend
327582

literature-review

by K-Dense-AI

Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature

Backend
238507

video-downloader

by ComposioHQ

Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.

Backend
50173

dotnet-backend

by anton-abyzov

.NET/C# backend developer for ASP.NET Core APIs with Entity Framework Core. Builds REST APIs, minimal APIs, gRPC services, authentication with Identity/JWT, authorization, database operations, background services, SignalR real-time features. Activates for: .NET, C#, ASP.NET

Backend
92296