Using C# how can I test a file is a jpeg? Should I check for a .jpg extension?
Thanks
|
|
Several options: You can check for the file extension:
of check for the correct magic number in the header of the file:
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):
|
||||||||||
|
|
|
Depending on the context in which you're looking at this file, you need to remember that you can't open the file until the user tells you to open it. (The link is to a Raymond Chen blog entry.) |
||
|
|
|
|
This will loop through each file in the current directory and will output if any found files with JPG or JPEG extension are Jpeg images.
|
||
|
|
|
|
The best way would to try and create an image from it using the Drawing.Bitmap (string) constructor and see if it fails to do so or throws an exception. The problem with some of the answers are this: firstly, the extension is purely arbitrary, it could be jpg, jpeg, jpe, bob, tim, whatever. Secondly, just using the header isn't enough to be 100% sure. It can definately determine that a file isn't a jpeg but can't guarantee that a file is a jpeg, an arbitrary binary file could have the same byte sequence at the start. Skizz |
||
|
|
|
|
Checking the file extension is not enough as the filename might be lying. A quick and dirty way is to try and load the image using the Image class and catching any exceptions:
This isn't ideal as you could get any kind of exception, such as OutOfMemoryException, FileNotFoundException, etc. etc. The most thorough way is to treat the file as binary and ensure the header matches the JPG format. I'm sure it's described somewhere. |
||
|
|
|
|
Read the header bytes. This article contains info on several common image formats, including JPEG: |
||
|
|
|
|
You could 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 |
||||||||
|
|
|
Open the file as a stream and look for the magic number for JPEG.
|
|||
|
|
|
|
Once you have the extension you could use a regular expression to validate it.
|
||||
|
|
|
The code here: http://mark.michaelis.net/Blog/RetrievingMetaDataFromJPEGFilesUsingC.aspx Shows you how to get the Meta Data. I guess that would throw an exception if your image wasn't a valid JPEG. |
||
|
|
|
|
You could find documentation on the jpeg file format, specifically the header information. Then try to read this information from the file and compare it to the expected jpeg header bytes. |
||
|
|
|
|
You can use the Path.GetExtension Method. |
||
|
|