Ejercicio
Mostrar BPM en la consola
Objetivo
El formato Netpbm es una familia de formatos de archivo de imagen diseñados teniendo en cuenta la simplicidad, en lugar de un tamaño pequeño. Pueden representar imágenes en color, en escala de grises o BW utilizando texto sin formato (aunque exista una variante binaria).
Por ejemplo, una imagen en blanco y negro codificada en ASCII se representa utilizando el encabezado "P1".
La siguiente línea (opcional) puede ser un comentario, precedido de #.
La siguiente línea contiene el ancho y el alto de la imagen.
Las líneas restantes contienen los datos: 1 para los puntos negros 0 para los puntos blancos, como en este ejemplo:
P1
# Este es un mapa de bits de ejemplo de la letra "J"
6 10
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
0 0 0 0 1 0
1 0 0 0 1 0
0 1 1 1 0 0
0 0 0 0 0 0
0 0 0 0 0 0
(ese sería el contenido de un archivo llamado "j.pbm").
Cree un programa para decodificar un archivo de imagen como este y mostrarlo en la pantalla, utilizando solo la consola. Recuerda que el comentario es opcional.
Código de Ejemplo
import java.util.*;
public class Main
{
public static void main(String[] args)
{
String fileName;
String data;
String line;
int width;
int height;
System.out.println("Enter the file name: ");
fileName = new Scanner(System.in).nextLine();
if (!fileName.contains(".pbm"))
{
fileName += ".pbm";
}
if (!(new java.io.File(fileName)).isFile())
{
System.out.println("File not found!");
return;
}
// File reading
try
{
java.io.FileReader myFile = new java.io.FileReader(fileName);
java.io.BufferedReader myFileBufferedReader = new java.io.BufferedReader(myFile);
line = myFileBufferedReader.readLine();
if (!line.equals("P1"))
{
System.out.println("Does not seem a B&W ASCII PBM");
return;
}
System.out.println("Found B&W ASCII PBM");
// Width and height
line = myFileBufferedReader.readLine();
if ((line.length() > 1) && (line.charAt(0) == '#'))
{
System.out.println("Comment: " + line.substring(1));
line = myFileBufferedReader.readLine();
}
String[] widthheight = line.split("[ ]", -1);
width = Integer.parseInt(widthheight[0]);
height = Integer.parseInt(widthheight[1]);
System.out.printf("width: %1$s" + "\r\n", width);
System.out.printf("height: %1$s" + "\r\n", height);
// Data reading (gathering all the lines in one)
data = "";
line = myFileBufferedReader.readLine();
while (line != null)
{
data += line;
line = myFileBufferedReader.readLine();
}
myFile.close();
}
catch (IOException problem)
{
System.out.println("File was not read properly");
System.out.printf("Details: %1$s" + "\r\n", problem.getMessage());
return;
}
// Delete spaces, so that ony 0 and 1 remain
data = data.replace(" ", "");
// And traversing the data, displaying them
int pos = 0;
for (char symbol : data)
{
// After the width, we must advance to the next line
if (pos % width == 0)
{
System.out.println();
}
if (symbol == '1')
{
System.out.print("X");
}
else if (symbol == '0')
{
System.out.print(".");
}
pos++;
}
System.out.println();
}
}