February 20, 2009
Graphic Improvements
A long standing problem with graphic files on the web is that there’s no lossy format with transparency options. Three options are incoming, all realistically long-term if you’re developing for the entire web and not one particular platform.
JPEG + SVG Filters in HTML = masked lossy images. Allows for both raster and vector masking, but only for Firefox 3.1 for now. This brings the additional benefits of the entire SVG filter lineup available anywhere in HTML.
Webkit’s CSS Masks applicable to any visual element entirely using CSS proterties. Allows for a raster mask or referencing an SVG. Isn’t as extensive as the SVG Bling approach — it’s intended purely for masking — but has lower barrier for entry.
JPEG-XR, a new JPEG format seemingly unrelated to the original bar the name. Higher quality, smaller filesize, options for lossless encoding, and an alpha channel. Conspiracists may question Microsoft’s involvement after the OpenXML travesty but as long as licencing is free and adoption higher than the wavelet-encoded JPEG standard from a few years back, I’m happy.
That which rates a last mention is Microsoft’s Compositor filter. The documentation hints at being able to perform calculations using an alpha channel, but I’ve no idea if that translates to final rendered transparency since the examples are too complex for me to spend time decyphering.
A while back I created a test design called Sans & Serif that needed a large high-colour transparent image with alpha blending (the leaves). PNG 32 did the job, but it’s non-lossy so the file size was ~210k. I ended up converting the leaves to 8‑bit with some visual trickery to hide the aliased edges. I’m looking forward to doing this properly.