Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7052249
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:21:39+00:00 2026-05-28T03:21:39+00:00

How do I determine if an image that I have as raw bytes is

  • 0

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:21:40+00:00Added an answer on May 28, 2026 at 3:21 am

    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;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say you have an image that is 200px wide. Is there a way to
I have found this script that expand image when mouse is over, but when
i have the following: <s:Image source={path}/imageName/> how can i determine that path to load
I have data that always looks something like this: alt text http://michaelfogleman.com/static/images/chart.png I need
Is there an efficient way to determine if an image is in greyscale or
Is there an efficient way to determine if an image is in greyscale or
Is there an efficient way to determine if an image is in greyscale or
I have a class with a property that can be an Image (i.e. an
I have an image that I want to be watermarked to the bottom right
I have a rather large, almost full screen image that I'm going to be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.