WebP - A new image format for the Web (by Google)
developers.google.com
WebP - A new image format for the Web (by Google)
1–10 of 58 posts
Re: WebP - A new image format for the Web (by Google)
#2Blog announcement: http://blog.chromium.org/2010/09/webp-new-image-format-for-w...
Earlier discussion: http://news.ycombinator.com/item?id=2569881
Re: WebP - A new image format for the Web (by Google)
#3Re: WebP - A new image format for the Web (by Google)
#4WebP is 2 years old by this point in time. Is there anything new that I missed?
Re: WebP - A new image format for the Web (by Google)
#5WebP is 2 years old by this point in time. Is there anything new that I missed?
Re: WebP - A new image format for the Web (by Google)
#6WebP is 2 years old by this point in time. Is there anything new that I missed?
Re: WebP - A new image format for the Web (by Google)
#7WebP is 2 years old by this point in time. Is there anything new that I missed?
Exactly, is and will stay irrelevant for web developers until it gets adopted by more browsers. Google displays PNG still today on Google.com for Chrome users.
But at its core, WebP hasn't been shown to be more than marginally better than JPEG, so why bother modifying your tool chain and work flow? You generally need something to be an order of magnitude better for people to bother.
Re: WebP - A new image format for the Web (by Google)
#8WebP is 2 years old by this point in time. Is there anything new that I missed?
Exactly, is and will stay irrelevant for web developers until it gets adopted by more browsers. Google displays PNG still today on Google.com for Chrome users.
Re: WebP - A new image format for the Web (by Google)
#9Earlier quoted context omitted.
Exactly, is and will stay irrelevant for web developers until it gets adopted by more browsers. Google displays PNG still today on Google.com for Chrome users.
Not just browsers, but all image editors (natively) like Photoshop. But at its core, WebP hasn't been shown to be more than marginally better than JPEG, so why bother modifying your tool chain and work flow? You generally need something to be an order of magnitude better for people to bother.
When I was studying image compression back at university we wrote a whole bunch of lossy/lossless codecs. The issue is that most of the cool algorithms are protected by patents (such as Arithmetic coding). JPEG is quite old now and you can achieve much better results with wavelet coding as opposed to the traditional DCT approach. Plus it doesn't suffer the horrible blockiness effect that quantized DCT based stuff does.
Edit: If anybody has a few hours of time to waste here's a thesis I wrote on deblocking JPEG images a long time ago. http://www.csse.monash.edu.au/hons/projects/2005/Mirsad.Maka...
Re: WebP - A new image format for the Web (by Google)
#10Earlier quoted context omitted.
Not just browsers, but all image editors (natively) like Photoshop. But at its core, WebP hasn't been shown to be more than marginally better than JPEG, so why bother modifying your tool chain and work flow? You generally need something to be an order of magnitude better for people to bother.
WebP support transparency with lossy compression which is a huge advantage over JPEG. When I was studying image compression back at university we wrote a whole bunch of lossy/lossless codecs. The issue is that most of the cool algorithms are protected by patents (such as Arithmetic coding). JPEG is quite old now and you can achieve much better results with wavelet coding as opposed to the traditional DCT approach. Pl…
Isn't range coding widely viewed as being a legitimate workaround for the arithmetic coding patents? I guess in a year or two the question will be irrelevant, as the last of those patents will expire soon.