In C#.NET 4.0, based on a problem I had with downloading false images (saving an error aspx page as image.jpg instead of an actual image in image.jpg), I need to somehow read the file and identify if it is a valid image or not. I just need 1 function public bool IsValidJpgImage(string ImageFilename); Anything that returns false (is not a valid image file) I will delete from the disk.
|
|
|||||||||||
|
|
Several options: You can check for the file extension:
or
Another option would be to load the image and check for the correct type. However, this is less efficient (unless you are going to load the image anyway) but will probably give you the most reliable result (Be aware of the additional cost of loading and decompression as well as possible exception handling):
or try liek this .... try loading the file into an Image and then check the format
Alternatively you could open the file and check the header to get the type or Open the file as a stream and look for the magic number for JPEG.
|
|||||||||||
|
|
As far I as I know all JPEGs begin internally with same 10 character ASCII string although I can't remember what the first 6 characters are. This is quick/dirty method of indentifying a jpeg image even if the file extension is wrong.
If the image is not a jpeg the match will fail. |
||||
|
|
This code is for taking less then 500kb size and .jpg format before upload image
|
|||
|
|
