Practice Exercises C# Sharp - Learn to program with performing exercises C# Sharp

Practice Exercises C# Sharp

Learn to program with performing exercises C# Sharp

PGM viewer - Practice Exercises C# Sharp
Practice Exercises C# Sharp4,85320940

C# Programming Course New

Beginners, Intermediates, Advances

This FREE C# programming course! It covers all the aspects necessary for programming in C# up to the present.

Watch this!

Java Programming Course New

Beginners, Intermediates, Advances

This FREE Java programming course! It covers all the aspects necessary for programming in Java up to the present.

Watch this!

VB.Net Programming Course New

Beginners, Intermediates, Advances

This FREE VB.Net programming course! It covers all the aspects necessary for programming in VB.Net up to the present.

Watch this!

PGM viewer - Practice Exercises C# Sharp


Lesson 8:

File management


Exercise 8.40:

PGM viewer


Objetive:

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 header begins with a line containing P2 (if the image data is in ASCII) or P5 (if it is in binary).

The second line contains the width and height, separated by a space.

A third line contains the intensity value that corresponds to the target (typically 255, although it could also be 15 or another value).

From there the colors (shades of gray) of the points that make up the image begin. In ASCII format (P2) they are numbers from 0 to 255 separated by spaces and perhaps newlines. In binary (P5) format, they are contiguous bytes, from 0 (black) to 255 (white).

You must create a program capable of reading a file in binary PGM format (header P5), without comments, with 255 shades of gray (but with a width and height that can vary). In addition, you must represent the colors (shades of gray) in the console as follows:
• If the intensity of gray is greater than 200, you will draw a blank space.
• If it is between 150 and 199, you will draw a point.
• If it is between 100 and 149, you will draw a dash (-).
• If it is between 50 and 99, you will draw an "equals" symbol (=).
• If it is between 0 and 49, you will draw a pound sign (#).

The name of the file to be analyzed must be read from the command line, not prompted by the user or pre-set.

Note: line breaks (\ n) are represented by character 10 of the ASCII code (0x0A)


Source Code:


using System;
using System.IO;
public class readerImagePGM
{
    public static void Main()
    {
        // Read name file PGM
        Console.WriteLine("Enter name of file PGM");
        string name = Console.ReadLine();

        // Read all data
        FileStream filePGM = File.OpenRead(name);
        byte[] data = new byte[filePGM.Length];
        filePGM.Read(data, 0, filePGM.Length);
        filePGM.Close();

        // Read mesures file PGM
        string mesures = "";
        int i = 3;
        do
        {
            mesures += Convert.ToChar(data[i]);
            i++;
        }
        while (data[i] != 10);
        i++;

        string[] size;
        int width, height;

        size = mesures.Split(' ');
        width = Convert.ToInt32(size[0]);
        height = Convert.ToInt32(size[1]);

        // Read color tone PGM
        string colorTone = "";
        do
        {
            colorTone += Convert.ToChar(data[i]);
            i++;
        }
        while (data[i] != 10);
        i++;

        // Read pixels of PGM
        int amount = 0;
        for (int j = i; j < filePGM.Length; j++)
        {
            if (data[j] >= 200)
                Console.Write(" ");
            else if (data[j] >= 150 || data[j] <= 199)
                Console.Write(".");
            else if (data[j] >= 100 || data[j] <= 149)
                Console.Write("-");
            else if (data[j] >= 50 || data[j] <= 99)
                Console.Write("=");
            else if (data[j] >= 0 || data[j] <= 49)
                Console.Write("#");

            amount++;

            if (amount % width == 0)
                Console.WriteLine();
        }
    }
}
Exercisey 8.40





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.