Isn't there a way to use large images n yet not slow down your page | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Isn't there a way to use large images n yet not slow down your page

HTML

19th Jun 2017, 4:06 PM
Newton Afedu (Willy_Woncker)
Newton Afedu (Willy_Woncker) - avatar
4 Answers
0
Larger image -> bigger size The only way to speed up is to have the image on local cache... But if what you want is to load efficiently the page, you can specify which elements must load first, and download the big images at the end.
19th Jun 2017, 4:14 PM
Maria Zheng
Maria Zheng - avatar
0
You should look into image compression. Personally, I highly recommend Google's Guetzli encoder, which is sort of image compression tool. Located here: https://github.com/google/guetzli
19th Jun 2017, 4:22 PM
Jamie Isaksen
Jamie Isaksen - avatar
- 1
Larger image -> bigger size The only way to speed up is to have the image on local cache... But if what you want is to load efficiently the page, you can specify which elements must load first, and download the big images at the end. that makes perfect sense but loading the big images last will still make da page slow down especially wen dose images are required
19th Jun 2017, 4:25 PM
Newton Afedu (Willy_Woncker)
Newton Afedu (Willy_Woncker) - avatar
- 2
You should look into image compression. Personally, I highly recommend Google's Guetzli encoder, which is sort of image compression tool. Located here: https://github.com/google/guetzli thanks will check it out
19th Jun 2017, 4:25 PM
Newton Afedu (Willy_Woncker)
Newton Afedu (Willy_Woncker) - avatar