Usually, all images load from top to bottom. But recently I came across this image, which loads from bottom to top:

(Original link here: http://www.ikorka.eu/ikorka.jpg)
Why is this so? What in general determines the direction of image loading?
|
Usually, all images load from top to bottom. But recently I came across this image, which loads from bottom to top:
(Original link here: http://www.ikorka.eu/ikorka.jpg) Why is this so? What in general determines the direction of image loading?
| ||||
|
feedback
|
|
The difference is that this file is not really what it seems.
so although it is pretending to be a JPEG file it's in actual fact a Windows Bitmap file. Most browsers don't care about the extension, they just care about the data format, so it really doesn't matter (but it is very, very bad practice). From the Bitmap file format at fileformat.info:
So in answer to your question, what makes this image different to the others? It's a Windows Bitmap (masquerading as a JPEG) with a positive height setting which makes it a bottom-up bitmap. | |||
|
feedback
|