Please bookmark this page to avoid losing your image tool!

Image Fujifilm ETERNA Motion Picture Film Effect Applicator

(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');
    canvas.width = originalImg.width;
    canvas.height = originalImg.height;

    ctx.drawImage(originalImg, 0, 0);
    const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
    const data = imageData.data;

    // Fujifilm ETERNA is known for:
    // 1. Soft contrast (low contrast, lifted blacks, compressed highlights)
    // 2. Desaturated colors (muted palette)
    // 3. Characteristic color response (often slightly greenish/cyan tint, especially in shadows/mid-tones, muted blues)

    const CONTRAST_REDUCTION_FACTOR = 0.85; // Values closer to 1.0 mean less contrast reduction. E.g., 0.85 reduces distance from mid-gray by 15%.
    const DESATURATION_AMOUNT = 0.40;       // 0.0 (no desaturation) to 1.0 (grayscale). Eterna is notably desaturated.
    
    // Eterna-like color tint multipliers. These aim for the characteristic Eterna palette.
    // It often features prominent, slightly desaturated greens and muted blues that can shift towards teal.
    const R_TINT_FACTOR = 0.98; // Slightly reduce red component
    const G_TINT_FACTOR = 1.04; // Boost green component
    const B_TINT_FACTOR = 0.97; // Slightly reduce blue component, helping the green/teal shift

    for (let i = 0; i < data.length; i += 4) {
        let r = data[i];
        let g = data[i+1];
        let b = data[i+2];

        // --- 1. Soft Contrast Adjustment ---
        // This formula brings color values closer to mid-gray (128), effectively reducing contrast.
        // It lifts blacks (e.g., 0 becomes (0-128)*0.85 + 128 = 19.2)
        // And pulls in whites (e.g., 255 becomes (255-128)*0.85 + 128 = 235.95)
        r = (r - 128) * CONTRAST_REDUCTION_FACTOR + 128;
        g = (g - 128) * CONTRAST_REDUCTION_FACTOR + 128;
        b = (b - 128) * CONTRAST_REDUCTION_FACTOR + 128;

        // Clamp after contrast adjustment to prevent issues in next steps
        r = Math.max(0, Math.min(255, r));
        g = Math.max(0, Math.min(255, g));
        b = Math.max(0, Math.min(255, b));

        // --- 2. Desaturation ---
        // Calculate luminance using Rec.709 coefficients (standard for sRGB images)
        const lum = 0.2126 * r + 0.7152 * g + 0.0722 * b;
        
        // The saturation_retain_factor is how much of the original color (difference from luminance) is kept.
        const saturation_retain_factor = 1.0 - DESATURATION_AMOUNT;
        r = lum + saturation_retain_factor * (r - lum);
        g = lum + saturation_retain_factor * (g - lum);
        b = lum + saturation_retain_factor * (b - lum);

        // --- 3. Color Tinting for ETERNA Style ---
        // Apply the characteristic Eterna color shift.
        r = r * R_TINT_FACTOR;
        g = g * G_TINT_FACTOR;
        b = b * B_TINT_FACTOR;

        // --- Final Clamp ---
        // Ensure all color values are within the valid [0, 255] range.
        data[i] = Math.max(0, Math.min(255, r));
        data[i+1] = Math.max(0, Math.min(255, g));
        data[i+2] = Math.max(0, Math.min(255, b));
        // Alpha channel (data[i+3]) remains unchanged
    }

    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 Fujifilm ETERNA Motion Picture Film Effect Applicator is a tool designed to apply a cinematic film effect inspired by Fujifilm ETERNA motion picture film. This effect is characterized by soft contrast, desaturated colors, and a distinctive color response that often features a slight greenish or cyan tint. Users can utilize this tool to enhance their digital images, creating a film-like quality that is ideal for artistic photography, videography, or social media posts, giving photos a vintage or cinematic touch reminiscent of classic films.

Leave a Reply

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

Other Image Tools:

Image Fujifilm FP-100C Instant Film Effect Filter

Image Canon AE-1 Film Camera Render Effect

Photo B+W Dark Red #29 Filter Effect Application

Image Toy Camera Effect Enhancer

Photo Graflex Speed Graphic Filter Effect Tool

Image Konica Hexar AF Filter Effect Application

Image Ricoh GR Film Camera Filter Effect Application

Image Kodak Disposable Camera Filter Effect

Image Hoya Pro ND Filter Effect Application

Image Wratten #12 Yellow Filter Effect Tool

Image AGFA APX 100 Film Filter Effect Tool

Image Singh-Ray Vari-ND Filter Effect Application

Image Rollei RPX 25 Film Filter Effect Tool

Image 35mm Half-frame Camera Filter Effect

Image Kodak Vision3 250D Motion Picture Film Effect Filter

Image 120 Film Format Filter Effect

Image Lens Whacking Filter Effect Tool

Image Black and White Red Filter Effect Tool

Image Lee Medium Stopper 6-Stop ND Filter Effect Tool

Image Nikon F3 Film Camera Render Effect Tool

Image Polaroid Spectra Filter Effect Tool

Image Contax T2/T3 Filter Effect Application

Image Bronica ETRS Medium Format Filter Effect Application

Image Soap Bubble Bokeh Effect Generator

Image Center Graduated ND Filter Effect Tool

Image Breakthrough Photography X4 ND Filter Effect

Photo Filter Effect Creator for Yashica T4 Point-and-Shoot

Image AGFA APX 25 Film Filter Effect Tool

Image Singh-Ray Gold-N-Blue Polarizer Effect Tool

Image Black and White Blue Filter Effect Tool

Image Pinhole Solargraphy Effect Creator

Image Kodak Vision3 500T Motion Picture Film Effect Simulator

Image Soft Focus Filter Effect for Nikon Nikkor

Image Bergger Pancro 400 Film Filter Effect Tool

Image Agfa Optima Filter Effect Application

Image Technicolor 3-Strip Process Filter Effect

See All →