To allow perform common, repetitive tasks on image files (resizing, format conversion, optimization, and manipulation) directly within the utility tool.
Example tools:
├── Image
│ ├── transform - Image Transformation & Manipulation
│ │ ├── resize - Scale or adjust dimensions (e.g., set specific width/height, fit, cover)
│ │ ├── crop - Select and extract a defined region (e.g., aspect ratio or pixel values)
│ │ ├── rotate - Rotate image by predefined angles (90, 180, 270 degrees)
│ │ └── flip - Flip image horizontally or vertically
│ ├── format - Format Conversion
│ │ ├── toPng - Convert uploaded image to PNG format
│ │ ├── toJpeg - Convert uploaded image to JPEG format
│ │ ├── toWebP - Convert uploaded image to WebP format
│ └── optimize - Compression and Data Extraction
│ ├── compress - Reduce file size (options for lossy vs. lossless compression)
│ └── metadata - Extract detailed metadata (EXIF data, color profile, size, MIME type)
To allow perform common, repetitive tasks on image files (resizing, format conversion, optimization, and manipulation) directly within the utility tool.
Example tools: