Please bookmark this page to avoid losing your image tool!

Image Lee 80A Cooling Filter Effect Application

(Free & Supports Bulk Upload)

Drag & drop your images here or

The result will appear here...
You can edit the below JavaScript code to customize the image tool.
function processImage(originalImg) {
    const canvas = document.createElement('canvas');
    const ctx = canvas.getContext('2d');

    // Ensure the original image has valid dimensions
    const width = originalImg.naturalWidth || originalImg.width;
    const height = originalImg.naturalHeight || originalImg.height;

    if (width === 0 || height === 0) {
        // Return an empty canvas or throw an error if image is invalid/not loaded
        console.error("Image has zero dimensions. Is it loaded correctly?");
        canvas.width = 0;
        canvas.height = 0;
        return canvas;
    }

    canvas.width = width;
    canvas.height = height;

    // Draw the original image onto the canvas
    ctx.drawImage(originalImg, 0, 0, width, height);

    // Get the ImageData object
    const imageData = ctx.getImageData(0, 0, width, height);
    const data = imageData.data; // data is a Uint8ClampedArray: [R, G, B, A, R, G, B, A, ...]

    // Lee 80A filter RGB multipliers
    // This filter is used to convert light from 3200K (tungsten) to 5500K (daylight).
    // It strongly reduces red, moderately reduces green, and slightly boosts or maintains blue.
    // This creates a "cooling" effect.
    const rFactor = 0.55; // Significantly reduce red
    const gFactor = 0.80; // Moderately reduce green
    const bFactor = 1.15; // Slightly boost blue (or 1.0 to maintain blue if preferred)

    for (let i = 0; i < data.length; i += 4) {
        // Get original pixel values
        const r = data[i];
        const g = data[i + 1];
        const b = data[i + 2];
        // Alpha channel (data[i + 3]) is unchanged

        // Apply filter transformation
        let newR = r * rFactor;
        let newG = g * gFactor;
        let newB = b * bFactor;

        // Assign new values. Uint8ClampedArray will automatically clamp values
        // to the 0-255 range and round them.
        data[i] = newR;     // Red channel
        data[i + 1] = newG; // Green channel
        data[i + 2] = newB; // Blue channel
    }

    // Put the modified ImageData back onto the canvas
    ctx.putImageData(imageData, 0, 0);

    return canvas;
}

Free Image Tool Creator

Can't find the image tool you're looking for?
Create one based on your own needs now!

Description

The Image Lee 80A Cooling Filter Effect Application allows users to apply a Lee 80A cooling filter effect to images. This tool modifies the color balance of the image by significantly reducing red tones, moderately reducing green tones, and slightly boosting blue tones. This effect is particularly useful for converting images from tungsten lighting (3200K) to daylight (5500K) conditions, making it an excellent option for photographers and digital artists seeking to enhance their images with a cooler color palette or to correct color casts in their work.

Leave a Reply

Your email address will not be published. Required fields are marked *

Other Image Tools:

Image Autochrome Lumière Filter Effect Tool

Photo Infrared 720nm Filter Effect Tool

Image 10-Stop ND Filter Effect Tool

Photo Full Spectrum Filter Effect Tool

Image Motion Blur Filter Effect Tool

Image Panavision Film Look Filter Effect Tool

Image Rolleiflex TLR Camera Filter Effect Tool

Image Lee 85B Warming Filter Effect Application

Image Tiffen Black Pro-Mist Filter Effect Tool

Image Fomapan 100 Filter Effect Application

Image Lens Flare Filter Effect Tool

Image Ilford XP2 Super Filter Effect Application

Image Cinemascope Filter Effect Applicator

Image Dubblefilm Solar Filter Effect Application

Image Night Vision Filter Effect Tool

Image Tintype Filter Effect Application

Image Color Graduated Filter Effect Tool

Image Agfa Vista Filter Effect Application

Image Schneider Hollywood Black Magic Filter Effect Tool

Image TMax 400 Filter Effect Tool

Image Double Exposure Filter Effect Tool

Image Fujichrome Velvia 50 Filter Effect Application

Image Revolog Texture Film Filter Effect Tool

Image Lomography Metropolis Filter Effect Application

Image Variable ND Filter Effect Tool

Image 8mm Movie Film Filter Effect Application

Image TMax 100 Filter Effect Application

Image Fog Filter Effect Tool

Image Ektachrome E100 Filter Effect Application

Image RED Cinema Camera Filter Effect Tool

Image Reverse Graduated ND Filter Effect Tool

Image Kaleidoscope Filter Effect Tool

Image Platinum Palladium Print Filter Effect

Image Light Leak Filter Effect Tool

Image Moire Pattern Filter Effect Tool

Image Pull Processing Filter Effect Tool

See All →