public final class MatrixToImageWriter extends Object
BitMatrix to BufferedImage,
file or stream. Provided here instead of core since it depends on
Java SE libraries.| Modifier and Type | Method and Description |
|---|---|
static BufferedImage |
toBufferedImage(BitMatrix matrix)
Renders a
BitMatrix as an image, where "false" bits are rendered
as white, and "true" bits are rendered as black. |
static void |
writeToFile(BitMatrix matrix,
String format,
File file)
Writes a
BitMatrix to a file. |
static void |
writeToStream(BitMatrix matrix,
String format,
OutputStream stream)
Writes a
BitMatrix to a stream. |
public static BufferedImage toBufferedImage(BitMatrix matrix)
BitMatrix as an image, where "false" bits are rendered
as white, and "true" bits are rendered as black.public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException
BitMatrix to a file.IOExceptiontoBufferedImage(BitMatrix)public static void writeToStream(BitMatrix matrix, String format, OutputStream stream) throws IOException
BitMatrix to a stream.IOExceptiontoBufferedImage(BitMatrix)Copyright © 2017. All rights reserved.