Loading images Faster in Webpage

前端 未结 14 2064
死守一世寂寞
死守一世寂寞 2020-12-30 23:39

In the web application when i click on a link that should load an image from server, it is taking too much time since the images are sized approxmately 3MB - 5 MB, we are un

14条回答
  •  旧时难觅i
    2020-12-30 23:58

    There are a couple of solutions to explore for managing large images:

    Try to bring down file size (3-5MB is too high IMHO):

    • Remove all metadata
    • Reduce resolution/pixel-density
    • Reduce height/width of the image
    • Use JPEG compression
    • Use GZIP compression on your server

    You can also explore:

    • Use a CDN to serve images (to allow parallel loading)
    • Use services like Cloudinary/IMGIX which allow you to dynamically select the image size you want

提交回复
热议问题