PCX width and height C# Exercise - C# Programming Course

 Lesson

File Management

 Exercise

PCX width and height

 Objetive

Create a program that checks if a file is a PCX image and, if so, displays its width and height using the following specification:

What is the PCX format?

The PCX format is used for storing images. It was created by ZSoft, the company behind the Paintbrush image manipulation program.

Internal details of a PCX file

A PCX file consists of the following parts: a file header, a bitmap header, a color table, and the bytes that define the image. The data forming the file header and the bitmap header are as follows:

Header Position Bytes Meaning
0 1 ID: must be 10
1 1 PCX File Version
0 = Version 2.5
2 = Version 2.8 with Palette
3 = Version 2.8 default palette
4 = Paintbrush for Windows
5 = Version 3.0 or higher, with the end of file palette.
2 1 Must be 1 to indicate RLE
3 1 Bits per pixel
1 - Monochrome
4-16 colors
8 to 256 colors
24-16700000 color (true color, "truecolor")
4 8 Image Coordinates
Xmin, Ymin, Xmax, Ymax (4 data 2 bytes each)
12 2 Horizontal resolution, in dots per inch
14 2 Vertical resolution, in dots per inch
16 48 Color map with the definition of the palette in case of 16 or fewer colors. Organized in fields of 16 bytes * 3.
64 1 Reserved
65 1 Number of planes (4 to 16 colors, 3-bits for RGB -24)
66 2 Bytes per line of image (the image width, measured in bytes)
68 2 Palette information
1 = Color
2 = Grayscale
70 2 Screen width (only used by Paintbrush IV and above)
72 2 Screen height (only used by Paintbrush IV and above)
74 54 bytes of padding, to complete 128 bytes of header. All bytes should be 0.

Using these details, we can find information about the file. For example, to determine the width and height of the image, we should open the file, move to position 4 (counting from 0), and read the four bytes that represent Xmin, Ymin, Xmax, and Ymax. Then we can calculate the width and height as follows: Width = Xmax - Xmin + 1, Height = Ymax - Ymin + 1.

If the version number is 5, the color palette will be in the last 769 bytes of the file. First you will find a value of 12, then the RGB values of the 256 colors in the palette. If these values are displayed on a VGA screen, they should be divided by 4 because the RGB components of a VGA card only go from 0 to 63.

Images in 24-bit color (8 bits, 3 planes) have a palette for each point that stores the components R, G, and B.

 Example Code

using System;
using System.IO;
public class PCXreader
{
    public static void Main()
    {
        BinaryReader myFile;

        myFile = new BinaryReader(File.Open("1.pcx", FileMode.Open));

        byte mark = myFile.ReadByte();
        if (mark != 10)
        {
            Console.WriteLine("Not a PCX file!");
        }
        else
        {
            myFile.BaseStream.Seek(4, SeekOrigin.Begin);
            short xMin = myFile.ReadInt16();
            short yMin = myFile.ReadInt16();
            short xMax = myFile.ReadInt16();
            short yMax = myFile.ReadInt16();
            Console.WriteLine("Width: " + (xMax - xMin + 1));
            Console.WriteLine("Height: " + (yMax - yMin + 1));
        }

        myFile.Close();
    }
}

More C# Exercises of File Management

 Writing to a text file
Create a program to ask the user for several sentences (until they just press Enter) and store them in a text file named "sentences.txt"...
 Appending to a text file
Create a program to ask the user for several sentences (until they just press Enter) and store them in a text file named "sentences.txt". If the file ...
 Display file contents
Create a program to display all the contents of a text file on screen (note: you must use a StreamReader). The name of the file will be entered in the...
 Extended TextToHTML (files)
Expand the TextToHtml class, so that ir can dump it result to a text file. Create a method ToFile, which will receive the name of the file as a parame...
 Logger
Create a class Logger, with a static method Write, which will append a certain text to a file: Logger.Write("myLog.txt", "This text is being logged");...
 More
Create a program which behaves like the Unix command "more": it must display the contents of a text file, and ask the user to press Enter each time th...
 Text replacer
Create a program to replace words in a text file, saving the result into a new file. The file, the word to search and word to replace it with must ...
 Count letters in a file
Create a program to count the amount of times that a certain character is inside a file (of any kind). The file and the letter can be asked to the ...
 Reading a binary file (1: BMP)
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). ...
 Writing to a binary file
Create a program which asks the user for his name, his age (byte) and the year in which he was born (int) and stores them in a binary file. Create ...
 C# to Java
Create a basic C# to Java translator. It must accept a C# source files, and create an equivalent Java source file. It will receive the file name in...
 Invert a text file
Create a program to "invert" the contents of a text file: create a file with the same name ending in ".tnv" and containing the same lines as the origi...
 Reading a binay file (2 - GIF)
Create a C# program to check if a GIF image file seems to be correct. It must see if the first four bytes are G, I, F, 8. In case it seems corre...
 Friends database, using files
Expand the "friends database", so that it loads data from file at the beginning of each session (if the file exists) and saves the data to file when t...
 Pascal to C# translator
Create a basic Pascal to C# translator. It will accept program such as: example program; var i: integer; max: integer; begin writeLn("How ...
 Convert a text file to uppercase
Write a program to read a text file and dump its content to another file, changing the lowercase letters to uppercase. You must deliver only the "....
 Convert any file to uppercase
Write a program to read a file (of any kind) and dump its content to another file, changing the lowercase letters to uppercase. You must deliver on...
 File inverter
Create a program to "invert" a file: create a file with the same name ending in ".inv" and containing the same bytes as the original file but in rever...
 File encrypter
Create a program to encrypt a text file into another text file. It must include the encrypter class you have created previously (in January 17th)...
 Count words
Create a C# program to count the amount of words stored in a text file...
 BMP width and height, BinaryReader
Create a C# program to display the width and height of a BMP file using a BinaryReader. The structure of the header of a BMP file is: File type ...
 TXT to HTML translator
Create a "Text to HTML converter", which will read a source text file and create a HTML file from its contents. For example, if the file contains: Ho...
 Invert binary file V2
Create a program to "invert" a file using a "FileStream". The program should create a file with the same name ending in ".inv" and containing the same...
 BMP width & height, FileStream
Create a C# program to display the width and height of a BMP file using a FileStream. Remember the structure of the BMP header: File type (lette...
 File copier
Create a program to copy a source file to a destination file. You must use FileStream and a block size of 512 KB. An example usage might be: mycopy...
 MP3 reader
ID3 specifications apply to any file or audiovisual container, but they are primarily used with audio containers. There are three compatible versions ...
 C to C# converter
Create a program to convert simple C programs, such as the following one, to C#: Note: the resulting program must compile correctly. Test it with oth...
 File splitter
Create a program to split a file (of any kind) into pieces of a certain size. It must receive the name of the file and the size as parameters. For exa...
 Encrypt a BMP file
Create a program to encrypt/decrypt a BMP image file by changing the "BM" mark in the first two bytes to "MB" and vice versa. Use the advanced File...
 CSV converter
The CSV ("Comma Separated Values") is an exchange format used by many spreadsheet and database management systems. It consists of a series of comma-se...
 File comparer
Create a C# program to tell if two files (of any kind) are identical (have the same content)....
 Display BPM on console
The Netpbm format is a family of image file formats designed with simplicity in mind, rather than small size. They can represent color, grayscale, or ...
 Extract text from a binary file
Create a program that extracts only the alphabetic characters contained in a binary file and dumps them to a separate file. The extracted characters s...
 C# to Pascal converter
Create a program that converts simple C# programs, such as the following one, to the Pascal language....
 Dump
Create a "dump" utility: a hex viewer that displays the contents of a file, with 16 bytes in each row and 24 rows in each screen. The program should p...
 DBF extractor
Create a program that displays the list of fields stored in a DBF file. The DBF format is used by the old dBase database manager and is still suppo...
 Text censorer
Create a program to censor text files. It should read a text file and dump its results to a new text file, replacing certain words with "[CENSORED]". ...
 SQL to text
You must create a C# program that is capable of parsing SQL INSERT commands and extracting their data into separate lines of text, as follows. If the ...
 PGM viewer
The PGM format is one of the versions of NetPBM image formats. Specifically, it is the variant capable of handling images in shades of gray. Its he...
 Display BMP on console V2
Create a program to display a 72x24 BMP file on the console. You must use the information in the BMP header (refer to the exercise of Feb. 7th). Pay a...

Juan A. Ripoll - Programming Tutorials and Courses © 2024 All rights reserved.  Legal Conditions.