vote up 2 vote down star
5

I'm loading an image from a file, and I want to know how to validate the image before it is fully read from the file.

string filePath = "image.jpg";
Image newImage = Image.FromFile(filePath);

The problem occurs when image.jpg isn't really a jpg. For example, if I create an empty text file and rename it to image.jpg, an OutOfMemory Exception will be thrown when image.jpg is loaded.

I'm looking for a function that will validate an image given a stream or a file path of the image.

Example function prototype

bool IsValidImage(string fileName);
bool IsValidImage(Stream imageStream);
flag
1  
Why not wrap that code in a try...catch block, and if it throws this exception, you can consider it "invalid"? Granted, this is a naive heuristic, but it does the job. Anything else will still have to open the file, so you aren't going to save a significant amount performance-wise regardless, IMO. – Jason Bunting Oct 16 '08 at 23:41

9 Answers

vote up 8 vote down check

JPEG's don't have a formal header definition, but they do have a small amount of metadata you can use.

  • Offset 0 (Two Bytes): JPEG SOI marker (FFD8 hex)
  • Offset 2 (Two Bytes): Image width in pixels
  • Offset 4 (Two Bytes): Image height in pixels
  • Offset 6 (Byte): Number of components (1 = grayscale, 3 = RGB)

There are a couple other things after that, but those aren't important.

You can open the file using a binary stream, and read this initial data, and make sure that OffSet 0 is 0, and OffSet 6 is either 1,2 or 3.

That would at least give you slightly more precision.

Or you can just trap the exception and move on, but I thought you wanted a challenge :)

link|flag
I would have gone ahead and read the header for the file and compared it to an array of .NET supported images' file headers. Eventually, I'll code that up and post it as a solution for anyone that would need it in the future. – SemiColon Oct 17 '08 at 0:48
Just reading the headers will not guarantee that the file is valid and won't throw an exception when opened in Image.FromFile(). – MusiGenesis Oct 17 '08 at 14:19
No, but I didn't claim it would. – FlySwat Oct 17 '08 at 14:46
vote up 2 vote down

Well, I went ahead and coded a set of functions to solve the problem. It checks the header first, then attempts to load the image in a try/catch block. It only checks for GIF, BMP, JPG, and PNG files. You can easily add more types by adding a header to imageHeaders.

static bool IsValidImage(string filePath)
{
    return File.Exists(filePath) && IsValidImage(new FileStream(filePath, FileMode.Open, FileAccess.Read));
}

static bool IsValidImage(Stream imageStream)
{
    if(imageStream.Length > 0)
    {
        byte[] header = new byte[4]; // Change size if needed.
        string[] imageHeaders = new[]{
                "\xFF\xD8", // JPEG
                "BM",       // BMP
                "GIF",      // GIF
                Encoding.ASCII.GetString(new byte[]{137, 80, 78, 71})}; // PNG

        imageStream.Read(header, 0, header.Length);

        bool isImageHeader = imageHeaders.Count(str => Encoding.ASCII.GetString(header).StartsWith(str)) > 0;
        if (isImageHeader == true)
        {
            try
            {
                Image.FromStream(imageStream).Dispose();
                imageStream.Close();
                return true;
            }

            catch
            {

            }
        }
    }

    imageStream.Close();
    return false;
}
link|flag
This code doesn't dispose ImageStream if IsValidImage returns false. – Joe Oct 17 '08 at 7:22
Thank you very much. I fixed the bug. – SemiColon Oct 17 '08 at 8:10
Not quite. If imageStream.Read throws an exception, you still don't close it. Best to put a using statement around the stream instantiation. – Joe Oct 17 '08 at 16:17
@Joe I must disagree. He should not be closing or disposing of the stream in this function. This function didn't create the stream, and so should not perform unexpected behaviours. Also.. In case of success, Image.FromStream will consume the stream (which might be readonly, and can't be reset) meaning that a subsequent read of the stream later would fail since the stream had already been consumed. Also, upon success the image is loaded (very costly) and then disposed of immediately. If this method return true, it's likely the caller will load the image on the next line. So that's double work. – Troy Howard Oct 23 at 1:12
vote up 2 vote down

Using Windows Forms:

bool IsValidImage(string filename)
{
    try
    {
        Image newImage = Image.FromFile(filename);
    }
    catch (OutOfMemoryException ex)
    {
        // Image.FromFile will throw this if file is invalid.
        // Don't ask me why.
        return false;
    }
    return true;
}

Otherwise if you're using WPF you can do the following:

bool IsValidImage(string filename)
{
    try
    {
        BitmapImage newImage = new BitmapImage(filename);
    }
    catch(NotSupportedException)
    {
        // System.NotSupportedException:
        // No imaging component suitable to complete this operation was found.
        return false;
    }
    return true;
}
link|flag
Thanks :) . I was thinking about doing that, but I was wondering if there was a way to do this that is already built into the .NET framework. Since no one else mentioned any built-in functions in the .NET framework to do this, I believe that this would be a good solution. – SemiColon Oct 17 '08 at 0:41
You should probably catch OutOfMemoryException, which is the documented exception thrown if the file format is invalid. This means you would let FileNotFoundException propagate to the caller. – Joe Oct 17 '08 at 7:19
I didn't realize that was the documented exception for an invalid image file. I just assumed there could be different exceptions thrown based on what exactly was wrong with the file. Thanks. – MusiGenesis Oct 17 '08 at 14:15
It's a bizarre choice of exception for an invalid image file. My guess is that the designers didn't want to create a new exception type, and System.IO.InvalidDataException did not exist in .NET 1.x. Still seems wrong to choose something so non-intuitive. – Joe Oct 17 '08 at 16:28
I agree. When I see an OutOfMemoryException, I think "holy crap, I'm doing something that's using up too much memory", not "I'll bet my file isn't formatted correctly". – MusiGenesis Oct 17 '08 at 18:39
show 9 more comments
vote up 1 vote down

I would create a method like:

Image openImage(string filename);

in which I handle the exception. If the returned value is Null, there is an invalid file name / type.

link|flag
LOL, I must've been writing that as a comment when you posted this. I agree with this answer, it's simple enough to get the job done. – Jason Bunting Oct 16 '08 at 23:42
This method is just kind of wrong. You should not control program flow using exceptions. Also.. The exceptions returned from that particular call can be very misleading and ambiguous. – Troy Howard Oct 23 at 1:02
vote up 1 vote down

You can do a rough typing by sniffing the header.

This means that each file format you implement will need to have a identifiable header...

JPEG: First 4 bytes are FF D8 FF E0 (actually just the first two bytes would do it for non jfif jpeg, more info here).

GIF: First 6 bytes are either "GIF87a" or "GIF89a" (more info here)

PNG: First 8 bytes are: 89 50 4E 47 0D 0A 1A 0A (more info here)

TIFF: First 4 bytes are: II42 or MM42 (more info here)

etc... you can find header/format information for just about any graphics format you care about and add to the things it handles as needed. What this won't do, is tell you if the file is a valid version of that type, but it will give you a hint about "image not image?". It could still be a corrupt or incomplete image, and thus crash when opening, so a try catch around the .FromFile call is still needed.

link|flag
hmm.. four people answered while I was typing that and collecting links. Busy place. – Troy Howard Oct 16 '08 at 23:48
vote up 0 vote down

You could read the first few bytes of the Stream and compare them to the magic header bytes for JPEG.

link|flag
vote up 0 vote down

Do you guys know these informations for tif files? (single and multipage)

I didn't find the Image class, I don't think it is System.Net.Mime.MediaTypeNames.Image, is it?

link|flag
vote up 0 vote down

You can use Image.FromStream function without validating image data in a try block. This way, you let the framework decide if the image file is valid without the performance penalty of reading the entire image data.

An example:

static bool IsValidImage(Stream imageStream)
{
    bool isValid = false;
    try
    {
        // Read the image without validating image data
        using (Image img = Image.FromStream(stream, false, false))
        {
            isValid = true;
        }
    }
    catch
    {
        ;
    }
    return isValid;
}

See this SO post for more information: A question about Image.FromStream in .NET

link|flag
vote up -1 vote down

why why why ??????

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.