Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I determine if an image that I have as raw bytes is corrupted or not. Is there any opensource library that handles this issue for multiple formats in C#?

Thanks

share|improve this question
What image formats do you need to support? If its just the basic 4 (bmp/png/gif/jpg) you could use the bitmap class and just attempt loading them. – Will Jan 13 '12 at 6:19
possible duplicate of How Do I Validate a JPEG Image in C# / .Net is not corrupted – V4Vendetta Jan 13 '12 at 6:21
I have edited the question. – Wajih Jan 13 '12 at 6:22
The Bitmap class can take bytes. Do you want to just check if its an image or do you want to check if its an image and a valid image? – Will Jan 13 '12 at 6:27

2 Answers

up vote 3 down vote accepted

Try to create a GDI+ Bitmap from the file. If creating the Bitmap object fails, then you could assume the image is corrupt. GDI+ supports a number of file formats: BMP, GIF, JPEG, Exif, PNG, TIFF.

Something like this function should work:

public bool IsValidGDIPlusImage(string filename)
{
    try
    {
        using (var bmp = new Bitmap(filename))
        {
        }
        return true;
    }
    catch(Exception ex)
    {
        return false;
    }
}

You may be able to limit the Exception to just ArgumentException, but I would experiment with that first before making the switch.

EDIT
If you have a byte[], then this should work:

public bool IsValidGDIPlusImage(byte[] imageData)
{
    try
    {
        using (var ms = new MemoryStream(imageData))
        {
            using (var bmp = new Bitmap(ms))
            {
            }
        }
        return true;
    }
    catch (Exception ex)
    {
        return false;
    }
}
share|improve this answer
Well I have raw bytes...so I have edited the question – Wajih Jan 13 '12 at 6:22
OK. fine looks that is just what I needed! Thanks. – Wajih Jan 13 '12 at 6:27

You can look these links for taking an idea. First one is here; Validate Images

And second one is here; How to check corrupt TIFF images

And sorry, I don't know any external library for this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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