Color Converter vs Image Converter
Color Converter
Convert colors between HEX, RGB, HSL, and HSV — instantly and in any direction.
Convert any color between HEX (#rrggbb), RGB (r, g, b), HSL (hue, saturation, lightness), and HSV/HSB (hue, saturation, value) formats. Accepts HEX with or without the # prefix, shorthand HEX (#abc), rgb() function syntax, hsl() function syntax, or bare r,g,b values. Returns all four representations at once.
Example input:
{
"color": "#ff6600"
}Image Converter
Convert images between PNG, JPEG, WebP, AVIF, TIFF, GIF, and SVG formats
Upload an image and convert it to another format. Supports PNG, JPEG, WebP, AVIF, TIFF, GIF as both input and output; SVG is accepted as input only. Maximum input size is 3 MB. Returns the converted image as a base64 string along with dimensions and file size.
Example input:
{
"image": "<base64-png>",
"from": "png",
"to": "webp",
"quality": 80
}| Feature | Color Converter | Image Converter |
|---|---|---|
| Category | conversion | conversion |
| Inputs | color | image, from, to, quality |
| Outputs | hex, rgb, hsl, hsv, valid, error | image, format, width, height, size_bytes |