PNG Sepia Filter
Apply a warm sepia tone to any PNG image β the classic vintage photograph look β in your browser. Adjust intensity from subtle to fully aged. Transparency preserved.
Where the sepia look comes from
"Sepia" originally referred to a brown ink derived from the cuttlefish (genus Sepia), used in 19th-century photographic toning. Photographers would tone silver-based prints with sepia to make them more durable and to give them their characteristic warm brown cast. By the early 20th century, sepia photographs had become so common β and so associated with nostalgia and history β that the word now means any monochromatic image with a warm brown tint, regardless of how it was made.
Digital sepia simulates that look mathematically. The standard formula takes each pixel's red, green and blue values and remaps them through a fixed matrix that biases the output toward warm browns:
new_R = 0.393ΓR + 0.769ΓG + 0.189ΓB new_G = 0.349ΓR + 0.686ΓG + 0.168ΓB new_B = 0.272ΓR + 0.534ΓG + 0.131ΓB
These coefficients (Microsoft's reference values, also used by the W3C CSS sepia() filter) produce a balanced, recognisable vintage warmth without going overly orange. The intensity slider blends the sepia result with the original colour image β 100% is pure sepia, 50% is half-strength tint, 0% is the original untouched.
When sepia works β and when it doesn't
Sepia is a stylistic choice with a strong emotional load: it makes images feel old, contemplative and slightly nostalgic. That tone fits some content beautifully and clashes badly with others.
Works well for:
- Historical recreations, family-history projects, genealogy websites.
- Vintage-themed marketing (whisky brands, antique shops, leather goods, classic-car restorers).
- Editorial portraits where you want a thoughtful, considered feel.
- Black-and-white photographs that feel too clinical β sepia warms them up.
- Photo books and printed albums β sepia tones survive cheap inkjet printing better than full colour.
Doesn't suit:
- Tech/SaaS marketing β sepia signals "old", the opposite of what most software brands want.
- Food photography β neutral colour-rendered food looks fresh; sepia food looks unappetising.
- Product shots for e-commerce β colour fidelity matters for purchasing decisions.
- Children's content β sepia carries adult/historical connotations.
- News photography β the editorial implication is "this is reportage", not stylised.
How this tool processes your image
The browser draws your PNG onto a hidden canvas, then iterates pixel by pixel through the image data. For each pixel, it computes the sepia-mapped R, G, B values via the formula above, then blends them with the original values using the intensity slider as the mix ratio. The alpha channel passes through untouched, so transparency survives intact. The result is re-encoded as a PNG you can download.
Processing a 1920Γ1080 image (about 2 million pixels) takes around 100β200 milliseconds on a typical desktop, longer on mobile. Very large images (8K and up) can take a few seconds β the work is single-threaded inside the browser's main JavaScript context.
Intensity slider β how to use it
- 100% β full traditional sepia. The image goes monochromatic warm-brown.
- 70β85% β strong vintage feel but colours are still hinted. Great for editorial portraits.
- 40β60% β washed warm tone, often used in modern "moody" Instagram styles.
- 20β35% β barely-there warmth, mostly invisible but adds a touch of nostalgia.
- 0% β original image, no change.
Combining sepia with other effects
For a more believable "old photograph" look, layer multiple effects:
- Apply sepia (this tool, 80β100%).
- Reduce contrast slightly with the Brightness/Contrast tool β old photos rarely have crisp blacks or pure whites.
- Add subtle blur with PNG Blur (1β3 pixel radius) to mimic old lens softness.
- Optionally add grain or vignette in your image editor.
Tips and best practice
- Sepia destroys colour information β back up your original PNG before applying the filter, even though this tool keeps your source unchanged.
- If you want a different colour tint (cyan, green, blue duotone), apply grayscale first with the PNG Grayscale tool and then tint in your editor of choice.
- For social media, 60β70% intensity reads as "stylised" rather than "fake"; 100% reads as a deliberate vintage statement.
- Print outputs tend to look slightly darker than screen β bump intensity up 10β15% if you're producing for print.
FAQs
Will transparency be preserved?
Yes β the alpha channel is unmodified.
Is the result the same as Instagram's sepia filter?
Close but not identical. Instagram's filters add layered effects (vignette, blur, contrast curves) that this tool doesn't. The base sepia transform is industry-standard.
Can I tint to a different colour?
This tool produces warm brown only. For cyanotype, duotone or other tints, desaturate first then tint in an editor.
Does the file size change?
Slightly β sepia images often compress marginally better than full-colour ones.
Is anything uploaded?
No. The filter runs entirely in your browser.
Can I batch-apply sepia?
Not yet β one at a time.