Post Proccessing | Color Tint
Apply color tints to images with a wide selection of preset colors and adjustable strength.
Quick Start
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "post-processing-color-tint",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/photo.jpg",
"tint_mode": "vintage",
"tint_strength": 0.7
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
image_url |
string |
(empty) |
URL of image to process |
tint_mode |
string |
vintage |
Tint color. Options: sepia, red, green, blue, cyan, magenta, yellow, purple, orange, warm, cool, lime, navy, vintage, rose, teal, maroon, peach, lavender, olive |
tint_strength |
number |
1 |
Tint strength |
Output
Examples
Vintage Sepia
{
"model": "post-processing-color-tint",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/old-building.jpg",
"tint_mode": "sepia",
"tint_strength": 0.8
}
}
Cool Blue Tint
{
"model": "post-processing-color-tint",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/night-scene.jpg",
"tint_mode": "cool",
"tint_strength": 0.5
}
}
Related Models
Documentation
1---2name: post-processing-color-tint3description: Apply color tints to images. Trigger: Use when the user wants to add a color tint, or requests 'color tint', 'sepia tone', 'vintage tint', or 'post processing tint'.4---56# Post Proccessing | Color Tint78Apply color tints to images with a wide selection of preset colors and adjustable strength.910## Quick Start1112```bash13curl -X POST https://api.eachlabs.ai/v1/prediction \14 -H "Content-Type: application/json" \15 -H "X-API-Key: $EACHLABS_API_KEY" \16 -d '{17 "model": "post-processing-color-tint",18 "version": "0.0.1",19 "input": {20 "image_url": "https://example.com/photo.jpg",21 "tint_mode": "vintage",22 "tint_strength": 0.723 }24 }'25```2627## Parameters2829| Parameter | Type | Default | Description |30|-----------|------|---------|-------------|31| `image_url` | string | (empty) | URL of image to process |32| `tint_mode` | string | `vintage` | Tint color. Options: `sepia`, `red`, `green`, `blue`, `cyan`, `magenta`, `yellow`, `purple`, `orange`, `warm`, `cool`, `lime`, `navy`, `vintage`, `rose`, `teal`, `maroon`, `peach`, `lavender`, `olive` |33| `tint_strength` | number | `1` | Tint strength |3435## Output3637- **Type:** image3839## Examples4041### Vintage Sepia42```json43{44 "model": "post-processing-color-tint",45 "version": "0.0.1",46 "input": {47 "image_url": "https://example.com/old-building.jpg",48 "tint_mode": "sepia",49 "tint_strength": 0.850 }51}52```5354### Cool Blue Tint55```json56{57 "model": "post-processing-color-tint",58 "version": "0.0.1",59 "input": {60 "image_url": "https://example.com/night-scene.jpg",61 "tint_mode": "cool",62 "tint_strength": 0.563 }64}65```6667## Related Models6869- [Post Processing Combine](../post-processing/SKILL.md) - Apply multiple effects at once70- [Post Processing Color Correction](../post-processing-color-correction/SKILL.md) - Adjust brightness, contrast, and temperature71- [Post Processing Grain](../post-processing-grain/SKILL.md) - Add film grain7273## Documentation7475- [EachLabs API Docs](https://docs.eachlabs.ai)