Display Width and Height of a BMP File Using FileStream in C#

This program reads the header of a BMP (Bitmap) file and extracts the width and height of the image using FileStream. It uses the structure of the BMP header, where the width and height are located at specific byte positions in the file. The program will display the width and height of the BMP image in pixels, which are located in the file header at positions 18-21 (for width) and 22-25 (for height). The program will work by opening the file, reading the bytes corresponding to the header, and extracting the width and height values. This information is then displayed to the user.



Group

File Handling in C#

Objective

1. Prompt the user for the file path of the BMP image.
2. Open the BMP file using a FileStream in read mode.
3. Navigate to the specific byte positions in the file to retrieve the width and height.
4. Convert the byte values to integer values to represent the width and height.
5. Display the width and height values on the console.

Create a C# program to display the width and height of a BMP file using a FileStream.

Example C# Exercise

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

class BMPInfoExtractor
{
    // Main method to run the program
    static void Main(string[] args)
    {
        // Prompt the user for the file path of the BMP image
        Console.WriteLine("Please enter the file path of the BMP image:");

        // Read the file path from user input
        string filePath = Console.ReadLine();

        try
        {
            // Open the BMP file using FileStream in read mode
            using (FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read))
            {
                // Check if the file is a BMP file by reading the first two bytes (BM)
                byte[] fileType = new byte[2];
                fileStream.Read(fileType, 0, 2);

                // If the file is not a BMP, display an error message
                if (fileType[0] != 'B' || fileType[1] != 'M')
                {
                    Console.WriteLine("The file is not a valid BMP file.");
                    return;
                }

                // Move the file pointer to the width field (bytes 18-21)
                fileStream.Seek(18, SeekOrigin.Begin);

                // Read the width (4 bytes)
                byte[] widthBytes = new byte[4];
                fileStream.Read(widthBytes, 0, 4);

                // Convert the byte array to an integer representing the width
                int width = BitConverter.ToInt32(widthBytes, 0);

                // Move the file pointer to the height field (bytes 22-25)
                fileStream.Seek(22, SeekOrigin.Begin);

                // Read the height (4 bytes)
                byte[] heightBytes = new byte[4];
                fileStream.Read(heightBytes, 0, 4);

                // Convert the byte array to an integer representing the height
                int height = BitConverter.ToInt32(heightBytes, 0);

                // Display the width and height of the BMP image
                Console.WriteLine($"Width: {width} pixels");
                Console.WriteLine($"Height: {height} pixels");
            }
        }
        catch (Exception ex)
        {
            // Handle any errors that may occur while opening or reading the file
            Console.WriteLine("An error occurred: " + ex.Message);
        }
    }
}

 Output

Please enter the file path of the BMP image:
image.bmp
Width: 800 pixels
Height: 600 pixels

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#.

  • Copy Source File to Destination File Using FileStream in C#

    This program copies a source file to a destination file using FileStream in C#. The file is read and written in blocks of 512 KB at a time to handle large files efficiently. The pr...

  • Tag Reader for Audio Files in C#

    This program reads and extracts the ID3 version 1 tags from an audio file, specifically the last 128 bytes of the file, which contain metadata information such as the title, artist...

  • Simple C to C# Converter

    This program is designed to convert simple C programs into C# code. It takes a C program as input and translates it into a corresponding C# program that compiles and runs correctly...

  • File Splitter Program in C#

    This program allows you to split a file of any type into smaller pieces of a specified size. The program takes two parameters: the name of the file to split and the size (in bytes)...

  • BMP Image File 'Encrypt-Decrypt' Program in C#

    This program allows you to encrypt and decrypt BMP image files by manipulating the "BM" mark located in the first two bytes of the file. The program swaps the "BM" marker at the be...

  • CSV to Text Converter in C#

    This program reads a CSV file that contains four data blocks per line. The first three data blocks are textual (name, surname, and city), and the last one is numeric (age). It proc...