Is anybody working on a lossy DEFLATE compressor?
I'm interested in developing lossy PNG compressor (although PNG is supposed to be lossless by design, it's possible to distort/discard image data while compressing to reduce file size).
I've tried to do it by degrading images "blindly" without feedback from deflate: https://github.com/pornel/mediancut-posterizer . It can reduce file size by 10-20% without noticeable distortion (and a little bit more if first treated with lossy RLE), but obviously much better compression could be achieved with "proper" lossy compression.
There's also http://meesoft.logicnet.dk/Analyzer/ that reduces PNGs by using X/Y filter on all rows and forcing as many zeros as possible (creating diagonal blur - http://allspark.net/cypherswipe/treetest.html), but I think it's also merely blind preprocessing rather than proper lossy compressor where distortion is only where beneficial, rather than everywhere upfront.
The only true lossy DEFLATE seems to be an unfinished experiment: http://membled.com/work/apps/lossy_png/ showing that even little distortion can halve the size. Has anybody continued/reimplemented something like that?