Optimize images - Losslessly compress images in Ja

2019-05-17 04:54发布

Having an ecommerce website, We have thousands of product images. On checking pagespeed on google it shows me something like this:

enter image description here

I was wondering, if there is any built in feature in Java or any third party library is available with which we can losslessly compress all the images that we host. Hence we can save few KBs of our customers.

On searching through internet I found few like punnypng and kraken which are paid, hence we do not have heavy image uploaded every month, subscribing to them is not worth. I would prefer any built in feature in Java or any open source third party library.

I came across JAI, but not sure about whether it addresses this problem or not. Anyone with hands-on experience with this?

P.S. We are using Java 8

3条回答
乱世女痞
2楼-- · 2019-05-17 05:26

~600 KB jpeg images are quite large for screen, though not for print. Having several images on a page would mean making more or less "thumb" views being smaller. And provide an individual product page with higher resolution, say 600 KB JPEG. Standard ImageIO suffices for conversion, see @NicolaFerraro.

Faster page loading can be achieved on the overview page with multiple images, by storing the smaller views into one large image. PNG might then be appriopriate to prevent JPEG artifacts.

To provide a higher resolution for a print, one can use the CSS media setting.

查看更多
三岁会撩人
3楼-- · 2019-05-17 05:35

Check thumbnailator. It is great at making smaller images from larger images.

Besides you should consider when you are going to make these smaller images. At each call, at the first call (any keeping a cache), ...

查看更多
ら.Afraid
4楼-- · 2019-05-17 05:48

Have you looked at classes in the javax.imageio package (http://docs.oracle.com/javase/7/docs/api/javax/imageio/package-summary.html) ?

You can do decoding and re-encoding of the images. The class ImageWriteParam (http://docs.oracle.com/javase/7/docs/api/javax/imageio/ImageWriteParam.html) lets you customize the compression settings.

查看更多
登录 后发表回答