I am working on a mobile web accelerator proxy server that aims to reduce bandwidth usage for mobile clients.
Currently I am looking at image files. The most fail safe way of reducing file size is to use higher compression/lower quality, while maintaining resolution.
However, I think halving the horizontal and vertical resolution of gifs, pngs and jpegs would greatly reduce the bandwidth requirement.
For each of these formats, is it possible to "trick" the browser to render a 500 pixel wide image as if it is having 1000 pixels width?
Remember; I don't control the HTML, JavaScript and CSS.
JPEG has progressive encoding. Could I utilize that? PNG and and GIFs may have a DPI-metadata?