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 BufferedImage |
toBufferedImage(BitMatrix matrix,
MatrixToImageConfig config)
As
toBufferedImage(BitMatrix) , but allows customization of the output. |
static void |
writeToFile(BitMatrix matrix,
String format,
File file)
Deprecated.
|
static void |
writeToFile(BitMatrix matrix,
String format,
File file,
MatrixToImageConfig config)
Deprecated.
|
static void |
writeToPath(BitMatrix matrix,
String format,
Path file)
Writes a
BitMatrix to a file with default configuration. |
static void |
writeToPath(BitMatrix matrix,
String format,
Path file,
MatrixToImageConfig config)
As
writeToPath(BitMatrix, String, Path) , but allows customization of the output. |
static void |
writeToStream(BitMatrix matrix,
String format,
OutputStream stream)
Writes a
BitMatrix to a stream with default configuration. |
static void |
writeToStream(BitMatrix matrix,
String format,
OutputStream stream,
MatrixToImageConfig config)
As
writeToStream(BitMatrix, String, OutputStream) , but allows customization of the output. |
public static BufferedImage toBufferedImage(BitMatrix matrix)
BitMatrix
as an image, where "false" bits are rendered
as white, and "true" bits are rendered as black. Uses default configuration.matrix
- BitMatrix
to writeBufferedImage
representation of the inputpublic static BufferedImage toBufferedImage(BitMatrix matrix, MatrixToImageConfig config)
toBufferedImage(BitMatrix)
, but allows customization of the output.matrix
- BitMatrix
to writeconfig
- output configurationBufferedImage
representation of the input@Deprecated public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException
writeToPath(BitMatrix, String, Path)
matrix
- BitMatrix
to writeformat
- image formatfile
- file File
to write image toIOException
- if writes to the file failpublic static void writeToPath(BitMatrix matrix, String format, Path file) throws IOException
BitMatrix
to a file with default configuration.matrix
- BitMatrix
to writeformat
- image formatfile
- file Path
to write image toIOException
- if writes to the stream failtoBufferedImage(BitMatrix)
@Deprecated public static void writeToFile(BitMatrix matrix, String format, File file, MatrixToImageConfig config) throws IOException
writeToPath(BitMatrix, String, Path, MatrixToImageConfig)
matrix
- BitMatrix
to writeformat
- image formatfile
- file File
to write image toconfig
- output configurationIOException
- if writes to the file failpublic static void writeToPath(BitMatrix matrix, String format, Path file, MatrixToImageConfig config) throws IOException
writeToPath(BitMatrix, String, Path)
, but allows customization of the output.matrix
- BitMatrix
to writeformat
- image formatfile
- file Path
to write image toconfig
- output configurationIOException
- if writes to the file failpublic static void writeToStream(BitMatrix matrix, String format, OutputStream stream) throws IOException
BitMatrix
to a stream with default configuration.matrix
- BitMatrix
to writeformat
- image formatstream
- OutputStream
to write image toIOException
- if writes to the stream failtoBufferedImage(BitMatrix)
public static void writeToStream(BitMatrix matrix, String format, OutputStream stream, MatrixToImageConfig config) throws IOException
writeToStream(BitMatrix, String, OutputStream)
, but allows customization of the output.matrix
- BitMatrix
to writeformat
- image formatstream
- OutputStream
to write image toconfig
- output configurationIOException
- if writes to the stream failCopyright © 2007–2024. All rights reserved.