Tutorial C# Sharp - Learn to program with performing exercises C# Sharp

Tutorial C# Sharp

Learn to program with performing exercises C# Sharp

Reading a binary file (1: BMP) - Tutorial C# Sharp
Tutorial C# Sharp4,85581245

Reading a binary file (1: BMP) - Tutorial C# Sharp


Lesson 8:

File management


Exercise 8.9:

Reading a binary file (1: BMP)


Objetive:

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


Source Code:


using System;
using System.IO;
public class BmpFile
{

    public static void Main()
    {
        byte data1, data2;

        //Open file
        BinaryReader myFile;
        myFile = new BinaryReader(File.Open("1.bmp", FileMode.Open));

        // Read data
        data1 = myFile.ReadByte();
        data2 = myFile.ReadByte();

        //Close file
        myFile.Close();

        //Check Data
        if ((data1 == 0x42) && (data2 == 0x4D))  // B M
            Console.WriteLine("It seems to be a BMP file");
        else
            Console.WriteLine("It DOES NOT seem to be a BMP file");
    }
}
Exercisey 8.9






Privacy Policy:



Google uses associated advertising companies to serve ads when it visits our website. These companies may use the information they obtain from your visits to this and other websites (not including your name, address, email address, or phone number) to provide you with announcements about products and services that interest you. If you would like to learn more about this practice and know your options to prevent these companies from using this information. Click in... Privacy and Terms of Google.

Cookies

This site uses Google cookies to provide its services, to personalize advertisements and to analyze traffic. Google receives information about your use of this website. More information in... Privacy and Terms of Google.