BMP Image File Validator in C#

This program checks if a BMP image file seems to be correct by verifying its header. Specifically, it checks if the first two bytes of the file match the ASCII codes for the letters "B" and "M" (0x42 and 0x4D). These two bytes are the signature used in BMP files to identify them. If the file passes this check, the program will indicate that the file is likely a valid BMP file. Otherwise, it will inform the user that the file may not be a valid BMP image.



Group

File Handling in C#

Objective

1. The program should accept the file name of the BMP image.
2. It will open the file in binary mode and check if the first two bytes are equal to 0x42 (B) and 0x4D (M).
3. If the bytes match, the program will print a message confirming that the file seems to be a valid BMP file.
4. If the bytes do not match, the program will inform the user that the file may not be a valid BMP image.

Create a C# program to check if a BMP image file seems to be correct. It must see if the first two bytes are B and M (ASCII codes 0x42 and 0x4D).

Example C# Exercise

 Copy C# Code
using System;
using System.IO;

class BMPValidator
{
    // Main method: entry point of the program
    static void Main(string[] args)
    {
        // Check if the user has provided a file name
        if (args.Length == 1)
        {
            string fileName = args[0];  // The file name passed as an argument

            // Call the method to validate the BMP file
            bool isValidBMP = ValidateBMPFile(fileName);

            // Display the result based on the validation
            if (isValidBMP)
            {
                Console.WriteLine("The file is a valid BMP image.");
            }
            else
            {
                Console.WriteLine("The file is not a valid BMP image.");
            }
        }
        else
        {
            Console.WriteLine("Please provide the file name of the BMP image.");
        }
    }

    // Method to check if the file is a valid BMP file based on the first two bytes
    static bool ValidateBMPFile(string fileName)
    {
        try
        {
            // Open the file in binary mode and read the first two bytes
            using (FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read))
            {
                byte[] header = new byte[2];
                fs.Read(header, 0, 2);  // Read the first two bytes of the file

                // Check if the first two bytes are 0x42 (B) and 0x4D (M)
                if (header[0] == 0x42 && header[1] == 0x4D)
                {
                    return true;  // The file starts with "BM", so it is likely a BMP file
                }
                else
                {
                    return false;  // The file does not start with "BM", so it is not a BMP file
                }
            }
        }
        catch (Exception ex)
        {
            // Handle any exceptions that might occur (e.g., file not found, access errors)
            Console.WriteLine($"Error: {ex.Message}");
            return false;
        }
    }
}

 Output

//When run with parameters:
bmpValidator image.bmp
The file is a valid BMP image.

//If the file doesn't match the BMP header:
bmpValidator nonImage.txt
The file is not a valid BMP image.

Share this C# Exercise

More C# Practice Exercises of File Handling in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Store and Read Personal Data in a Binary File in C#

    This program asks the user for their name, age (as a byte), and birth year (as an int). The data is then stored in a binary file. The program will also include a reader to test tha...

  • Basic C# to Java Source Code Coverter

    This program is designed to translate a simple C# source file into an equivalent Java source file. It will take a C# file as input, and generate a Java file by making common langua...

  • Reverse the Contents of a Text File in C#

    This program takes a text file as input and creates a new file with the same name, but with a ".tnv" extension. The new file will contain the same lines as the original file, but i...

  • Check and Validate GIF Image File in C#

    This program checks if a GIF image file is correctly formatted by inspecting the first few bytes of the file. It reads the first four bytes to confirm if they match the ASCII codes...

  • Persist Data in Friends Database in C#

    This program expands the "friends database" by adding functionality to load and save data from and to a file. The program will check for an existing file when the application start...

  • Pascal to C# Translator Converter

    This program is a basic Pascal-to-C# translator. It accepts a Pascal source file and converts it into an equivalent C# program. The program reads a Pascal file provided by the user...