Netpbm Image Decoder in C#

This C# program decodes a Netpbm image file (specifically the "P1" type) and displays the image content in the console. The program reads the header, dimensions, and pixel data from the image file, then represents the image in the console using 1 for black pixels and 0 for white pixels. The program is designed to handle an optional comment line in the file, which is ignored during the processing.



Group

File Handling in C#

Objective

1. The program will read a Netpbm "P1" format image file.
2. It will ignore any comment lines that start with #.
3. It will read the width and height of the image.
4. It will display the image in the console, using 0 for white pixels and 1 for black pixels.
5. The image will be printed with rows and columns corresponding to the pixel data in the file.

Example usage:

decodePbm j.pbm


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 black and white images using plain text (even though a binary variant exists).

Example C# Exercise

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

class NetpbmDecoder
{
    // Main method where the program starts execution
    static void Main(string[] args)
    {
        // Check if the user provided a filename as a command line argument
        if (args.Length != 1)
        {
            Console.WriteLine("Usage: decodePbm ");
            return;
        }

        // Get the file path from the command line argument
        string fileName = args[0];

        // Try to read the file
        try
        {
            // Open the file for reading
            using (StreamReader reader = new StreamReader(fileName))
            {
                // Read the magic number (P1) from the file
                string magicNumber = reader.ReadLine();
                if (magicNumber != "P1")
                {
                    Console.WriteLine("Invalid file format. The file is not a valid P1 Netpbm image.");
                    return;
                }

                // Read the comment lines and ignore them if they start with #
                string line;
                while ((line = reader.ReadLine()) != null && line.StartsWith("#"))
                {
                    // Skip comment lines
                }

                // Read the width and height of the image
                string[] dimensions = line.Split(' ');
                int width = int.Parse(dimensions[0]);
                int height = int.Parse(dimensions[1]);

                // Create a 2D array to store the pixel data
                int[,] image = new int[height, width];

                // Read the image data
                int row = 0;
                while ((line = reader.ReadLine()) != null)
                {
                    string[] pixels = line.Split(' ');
                    for (int col = 0; col < width; col++)
                    {
                        image[row, col] = int.Parse(pixels[col]);
                    }
                    row++;
                }

                // Display the image in the console
                Console.Clear();
                for (int r = 0; r < height; r++)
                {
                    for (int c = 0; c < width; c++)
                    {
                        // Display black (1) or white (0) pixels
                        Console.Write(image[r, c] == 1 ? "1" : "0");
                    }
                    Console.WriteLine(); // Move to the next line
                }
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error reading the file: {ex.Message}");
        }
    }
}

 Output

//Case 1 - Valid image:

//For the command:
decodePbm j.pbm

//Output:
000010
000010
000010
000010
000010
000010
100010
011100
000000
000000

//This would represent the letter "J" in a 6x10 grid, where 1 represents black pixels and 0 represents white pixels.

//Case 2 - Invalid or non-existent file:

//If the file doesn't exist or isn't a valid P1 format, the output might look like:
Usage: decodePbm 
Invalid file format. The file is not a valid P1 Netpbm 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#.

  • PCX Image File Checker in C#

    This C# program checks if a given file is a valid PCX image file. If the file is a PCX image, the program reads the file's header to extract the width and height of the image. The ...

  • Extract Alphabetic Characters from Binary File in C#

    This C# program extracts only the alphabetic characters from a binary file and dumps them into a separate file. The program identifies characters with ASCII codes between 32 and 12...

  • Convert C# Program to Pascal

    This C# program is designed to convert simple C# programs into Pascal language code. The program reads a C# source code file and translates basic constructs like if, for, while, va...

  • Hex Viewer Utility - Dump Utility in C#

    This C# program is a "dump" utility that functions as a hex viewer. It displays the contents of a given file in hexadecimal format, with 16 bytes in each row and 24 rows in each sc...

  • Display Fields in a DBF File in C#

    In this exercise, you will create a program that reads a DBF file and displays a list of fields contained within it. The DBF file format, used by the old dBase database manager, is...

  • Censor Text File Program in C#

    In this exercise, you will create a program that reads a text file, checks each word against a list of words to censor, and writes the modified text to a new file. The words to cen...