I have like 50000 images on my server, and each image is about 7mb of size. I made a gallery script based on the famous html code for displaying image :
<img src="image.jpg" width="200" height="150">
Even after setting the width and the height, the image is till taking time to display, because it's always download the 7mb sized image.
So, I'm here to ask you, Experts, if there is any way to display these images in a form of thumbnail with a lower quality, so it can be displayed quickly. I would like to do that without creating thumbnails of those 50000 images.
I appreciate any help or idea from your behalf.
I hope you all find my question interesting and i hope that we can find out a solution for this problem.
Thank you very much.
<img src="image.jpg" width="200" height="150">
Even after setting the width and the height, the image is till taking time to display, because it's always download the 7mb sized image.
So, I'm here to ask you, Experts, if there is any way to display these images in a form of thumbnail with a lower quality, so it can be displayed quickly. I would like to do that without creating thumbnails of those 50000 images.
I appreciate any help or idea from your behalf.
I hope you all find my question interesting and i hope that we can find out a solution for this problem.
Thank you very much.
Comment