I'm writing a program that downloads information from the web and part of that is images.
At the moment I'm having a problem as the code to download the images is a different part to the code that displays them (under mvc). If a 404 is issued or the image download fails some way the display code pops a message propmt up which i would like to avoid.
Is there an easy way to check to see if an image is valid? I'm only concerned about jpg, gif and png.
Note: I dont care about reading the image data, just to check to see if it is valid image format.
Best Solution
Do you want to check whether the download would be successful? Or do you want to check that what is downloaded is, in fact, an image?
In the former case, the only way to check is to try to access it and see what kind of HTTP response code you get. You can send an HTTP
HEAD
request to get the response code without actually downloading the image, but if you're just going to go ahead and download the image anyway (if it's successful) then sending a separateHEAD
request seems like a waste of time (and bandwidth).Alternatively, if you really want to check that what you're downloading is a valid image file, you have to read the whole file to check it for corruption. But if you just want to check that the file extension is accurate, it should be enough to check the first few bytes of the file. All GIF images start with the ASCII text
GIF87
orGIF89
depending on which GIF specification is used. PNG images start with the ASCII textPNG
, and JPEG images have some magic number, which appears to be0xd8ffe0ff
based on the JPEGs I looked at. (You should do some research and check that, try Wikipedia for links) Keep in mind, though, that to get even the first few bytes of the image, you will need to send an HTTP request which could return a 404 (and in that case you don't have any image to check).