I have raw bytes for an image. I use the following to code to determine if the image is corrupt or not
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;
}
}
If the image is completely corrupt the above code works fine, but what If I have an image that is partially corrupt? Like the JPEG below
How do I determine that the image is partially corrupt?
The original image being below which a simple 300x300 pixel image with a diagonal line from the centre.
Any guidance is highly appreciated.
Thanks
Detecting partially damaged images is tough.
A simplistic approach is to check if the start and end byte marks are complete like this:
This works at least for some (more) images but it can not detect images with damaged data between the start and end sections.
References:
There is open software out for this purpose, recommend to take a look at Bad Peggy (Java). If you are willing to use a bigger library, OpenCV could be useful.