Last active
May 10, 2022 14:27
-
-
Save armanbilge/3276d80030d1caa2ed7c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2015 Arman Bilge | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* | |
* The above copyright notice and this permission notice shall be included in all | |
* copies or substantial portions of the Software. | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
* SOFTWARE. | |
*/ | |
import java.io.BufferedInputStream; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.FileInputStream; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* A utility class for reading and writing PGM images. Methods use integers to represent unsigned bytes. | |
* | |
* Does not fully conform to the PGM specification because currently there is no support for: | |
* <ul> | |
* <li>More than one image per file</li> | |
* <li>Images with more than 256 shades of gray</li> | |
* <li>Comments within the raster</li> | |
* </ul> | |
* | |
* @author Arman Bilge | |
*/ | |
public final class PGMIO { | |
/** | |
* Magic number representing the binary PGM file type. | |
*/ | |
private static final String MAGIC = "P5"; | |
/** | |
* Character indicating a comment. | |
*/ | |
private static final char COMMENT = '#'; | |
/** | |
* The maximum gray value. | |
*/ | |
private static final int MAXVAL = 255; | |
private PGMIO() {} | |
/** | |
* Reads a grayscale image from a file in PGM format. | |
* @param file the PGM file read from | |
* @return two-dimensional byte array representation of the image | |
* @throws IOException | |
*/ | |
public static int[][] read(final File file) throws IOException { | |
final BufferedInputStream stream = new BufferedInputStream(new FileInputStream(file)); | |
try { | |
if (!next(stream).equals(MAGIC)) | |
throw new IOException("File " + file + " is not a binary PGM image."); | |
final int col = Integer.parseInt(next(stream)); | |
final int row = Integer.parseInt(next(stream)); | |
final int max = Integer.parseInt(next(stream)); | |
if (max < 0 || max > MAXVAL) | |
throw new IOException("The image's maximum gray value must be in range [0, " + MAXVAL + "]."); | |
final int[][] image = new int[row][col]; | |
for (int i = 0; i < row; ++i) { | |
for (int j = 0; j < col; ++j) { | |
final int p = stream.read(); | |
if (p == -1) | |
throw new IOException("Reached end-of-file prematurely."); | |
else if (p < 0 || p > max) | |
throw new IOException("Pixel value " + p + " outside of range [0, " + max + "]."); | |
image[i][j] = p; | |
} | |
} | |
return image; | |
} finally { | |
stream.close(); | |
} | |
} | |
/** | |
* Finds the next whitespace-delimited string in a stream, ignoring any comments. | |
* @param stream the stream read from | |
* @return the next whitespace-delimited string | |
* @throws IOException | |
*/ | |
private static String next(final InputStream stream) throws IOException { | |
final List<Byte> bytes = new ArrayList<Byte>(); | |
while (true) { | |
final int b = stream.read(); | |
if (b != -1) { | |
final char c = (char) b; | |
if (c == COMMENT) { | |
int d; | |
do { | |
d = stream.read(); | |
} while (d != -1 && d != '\n' && d != '\r'); | |
} else if (!Character.isWhitespace(c)) { | |
bytes.add((byte) b); | |
} else if (bytes.size() > 0) { | |
break; | |
} | |
} else { | |
break; | |
} | |
} | |
final byte[] bytesArray = new byte[bytes.size()]; | |
for (int i = 0; i < bytesArray.length; ++i) | |
bytesArray[i] = bytes.get(i); | |
return new String(bytesArray); | |
} | |
/** | |
* Writes a grayscale image to a file in PGM format. | |
* @param image a two-dimensional byte array representation of the image | |
* @param file the file to write to | |
* @throws IllegalArgumentException | |
* @throws IOException | |
*/ | |
public static void write(final int[][] image, final File file) throws IOException { | |
write(image, file, MAXVAL); | |
} | |
/** | |
* Writes a grayscale image to a file in PGM format. | |
* @param image a two-dimensional byte array representation of the image | |
* @param file the file to write to | |
* @param maxval the maximum gray value | |
* @throws IllegalArgumentException | |
* @throws IOException | |
*/ | |
public static void write(final int[][] image, final File file, final int maxval) throws IOException { | |
if (maxval > MAXVAL) | |
throw new IllegalArgumentException("The maximum gray value cannot exceed " + MAXVAL + "."); | |
final BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(file)); | |
try { | |
stream.write(MAGIC.getBytes()); | |
stream.write("\n".getBytes()); | |
stream.write(Integer.toString(image[0].length).getBytes()); | |
stream.write(" ".getBytes()); | |
stream.write(Integer.toString(image.length).getBytes()); | |
stream.write("\n".getBytes()); | |
stream.write(Integer.toString(maxval).getBytes()); | |
stream.write("\n".getBytes()); | |
for (int i = 0; i < image.length; ++i) { | |
for (int j = 0; j < image[0].length; ++j) { | |
final int p = image[i][j]; | |
if (p < 0 || p > maxval) | |
throw new IOException("Pixel value " + p + " outside of range [0, " + maxval + "]."); | |
stream.write(image[i][j]); | |
} | |
} | |
} finally { | |
stream.close(); | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment