public abstract class FormatWriter extends FormatHandler implements IFormatWriter
Modifier and Type | Field and Description |
---|---|
protected java.awt.image.ColorModel |
cm
Default color model.
|
protected java.lang.String |
compression
Current compression type.
|
protected java.lang.String[] |
compressionTypes
Available compression types.
|
protected int |
fps
Frame rate to use when writing in frames per second, if applicable.
|
protected boolean[][] |
initialized
Whether each plane in each series of the current file has been
prepped for writing.
|
protected boolean |
interleaved
Whether the channels in an RGB image are interleaved.
|
protected MetadataRetrieve |
metadataRetrieve
Current metadata retrieval object.
|
protected CodecOptions |
options
The options if required.
|
protected loci.common.RandomAccessOutputStream |
out
Current file.
|
protected boolean |
sequential
Whether or not we are writing planes sequentially.
|
protected int |
series
Current series.
|
protected int |
validBits
The number of valid bits per pixel.
|
COMPRESSION_SUFFIXES, currentId, format, LOGGER, metadataOptions, suffixes
Constructor and Description |
---|
FormatWriter(java.lang.String format,
java.lang.String suffix)
Constructs a format writer with the given name and default suffix.
|
FormatWriter(java.lang.String format,
java.lang.String[] suffixes)
Constructs a format writer with the given name and default suffixes.
|
Modifier and Type | Method and Description |
---|---|
boolean |
canDoStacks()
Reports whether the writer can save multiple images to a single file.
|
void |
changeOutputFile(java.lang.String id)
Switch the output file for the current dataset.
|
protected void |
checkParams(int no,
byte[] buf,
int x,
int y,
int w,
int h)
Ensure that the arguments that are being passed to saveBytes(...) are
valid.
|
void |
close() |
protected loci.common.RandomAccessOutputStream |
createOutputStream() |
java.awt.image.ColorModel |
getColorModel()
Gets the color model.
|
java.lang.String |
getCompression()
Gets the current compression type.
|
java.lang.String[] |
getCompressionTypes()
Gets the available compression types.
|
int |
getFramesPerSecond()
Gets the frames per second to use when writing.
|
MetadataRetrieve |
getMetadataRetrieve()
Retrieves the current metadata retrieval object for this writer.
|
int[] |
getPixelTypes()
Gets the supported pixel types.
|
int[] |
getPixelTypes(java.lang.String codec)
Gets the supported pixel types for the given codec.
|
protected int |
getPlaneCount()
Retrieve the total number of planes in the current series.
|
protected int |
getPlaneCount(int series)
Retrieve the total number of planes in given series.
|
protected int |
getSamplesPerPixel()
Retrieve the number of samples per pixel for the current series.
|
protected int |
getSamplesPerPixel(int series)
Retrieve the number of samples per pixel for given series.
|
int |
getSeries()
Returns the current series.
|
int |
getTileSizeX()
Retrieves the current tile width
Defaults to full image width if not supported
|
int |
getTileSizeY()
Retrieves the current tile height
Defaults to full image height if not supported
|
protected boolean |
isFullPlane(int x,
int y,
int w,
int h)
Returns true if the given rectangle coordinates correspond to a full
image in the given series.
|
boolean |
isInterleaved()
Gets whether or not the channels in an image are interleaved.
|
boolean |
isSupportedType(int type)
Checks if the given pixel type is supported.
|
void |
saveBytes(int no,
byte[] buf)
Saves the given image to the current series in the current file.
|
void |
saveBytes(int no,
byte[] buf,
loci.common.Region tile)
Saves the given image tile to the current series in the current file.
|
void |
savePlane(int no,
java.lang.Object plane)
Saves the given image plane to the current series in the current file.
|
void |
savePlane(int no,
java.lang.Object plane,
int x,
int y,
int w,
int h)
Saves the given image plane to the current series in the current file.
|
void |
savePlane(int no,
java.lang.Object plane,
loci.common.Region tile)
Saves the given image plane to the current series in the current file.
|
protected void |
seekToPlaneOffset(long baseOffset,
int x,
int y)
Seek to the given (x, y) coordinate of the image that starts at
the given offset.
|
void |
setCodecOptions(CodecOptions options)
Sets the codec options.
|
void |
setColorModel(java.awt.image.ColorModel model)
Sets the color model.
|
void |
setCompression(java.lang.String compress)
Sets the current compression type.
|
void |
setFramesPerSecond(int rate)
Sets the frames per second to use when writing.
|
void |
setId(java.lang.String id)
Initializes a writer from the input file name.
|
void |
setInterleaved(boolean interleaved)
Sets whether or not the channels in an image are interleaved.
|
void |
setMetadataRetrieve(MetadataRetrieve retrieve)
Sets the metadata retrieval object from
which to retrieve standardized metadata.
|
void |
setSeries(int series)
Sets the current series.
|
int |
setTileSizeX(int tileSize)
Will attempt to set the tile width to the desired value and return the actual value which will be used
|
int |
setTileSizeY(int tileSize)
Will attempt to set the tile height to the desired value and return the actual value which will be used
|
void |
setValidBitsPerPixel(int bits)
Sets the number of valid bits per pixel.
|
void |
setWriteSequentially(boolean sequential)
Sets whether or not we know that planes will be written sequentially.
|
checkSuffix, checkSuffix, getFormat, getMetadataOptions, getNativeDataType, getSuffixes, getSupportedMetadataLevels, isThisType, setMetadataOptions
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
saveBytes
getFormat, getNativeDataType, getSuffixes, isThisType
getMetadataOptions, getSupportedMetadataLevels, setMetadataOptions
protected int fps
protected java.awt.image.ColorModel cm
protected java.lang.String[] compressionTypes
protected java.lang.String compression
protected CodecOptions options
protected boolean[][] initialized
protected boolean interleaved
protected int validBits
protected int series
protected boolean sequential
protected MetadataRetrieve metadataRetrieve
getMetadataRetrieve()
prevent "null" access.protected loci.common.RandomAccessOutputStream out
public FormatWriter(java.lang.String format, java.lang.String suffix)
public FormatWriter(java.lang.String format, java.lang.String[] suffixes)
public void changeOutputFile(java.lang.String id) throws FormatException, java.io.IOException
IFormatWriter
changeOutputFile
in interface IFormatWriter
FormatException
java.io.IOException
public void saveBytes(int no, byte[] buf) throws FormatException, java.io.IOException
IFormatWriter
saveBytes
in interface IFormatWriter
no
- the image index within the current file, starting from 0.buf
- the byte array that represents the image.FormatException
- if one of the parameters is invalid.java.io.IOException
- if there was a problem writing to the file.public void saveBytes(int no, byte[] buf, loci.common.Region tile) throws FormatException, java.io.IOException
IFormatWriter
saveBytes
in interface IFormatWriter
no
- the image index within the current file, starting from 0.buf
- the byte array that represents the image tile.tile
- the Region representing the image tile to be read.FormatException
- if one of the parameters is invalid.java.io.IOException
- if there was a problem writing to the file.public void savePlane(int no, java.lang.Object plane) throws FormatException, java.io.IOException
IFormatWriter
savePlane
in interface IFormatWriter
no
- the image index within the current file, starting from 0.plane
- the image plane.FormatException
- if one of the parameters is invalid.java.io.IOException
- if there was a problem writing to the file.public void savePlane(int no, java.lang.Object plane, int x, int y, int w, int h) throws FormatException, java.io.IOException
IFormatWriter
savePlane
in interface IFormatWriter
no
- the image index within the current file, starting from 0.plane
- the image plane.x
- the X coordinate of the upper-left corner of the image tile.y
- the Y coordinate of the upper-left corner of the image tile.w
- the width (in pixels) of the image tile.h
- the height (in pixels) of the image tile.FormatException
- if one of the parameters is invalid.java.io.IOException
- if there was a problem writing to the file.public void savePlane(int no, java.lang.Object plane, loci.common.Region tile) throws FormatException, java.io.IOException
IFormatWriter
savePlane
in interface IFormatWriter
no
- the image index within the current file, starting from 0.plane
- the image plane.tile
- the Region representing the image tile to be read.FormatException
- if one of the parameters is invalid.java.io.IOException
- if there was a problem writing to the file.public void setSeries(int series) throws FormatException
IFormatWriter
setSeries
in interface IFormatWriter
series
- the series index, starting from 0.FormatException
- if the specified series is invalid.public int getSeries()
IFormatWriter
getSeries
in interface IFormatWriter
public void setInterleaved(boolean interleaved)
IFormatWriter
setInterleaved
in interface IFormatWriter
public boolean isInterleaved()
IFormatWriter
isInterleaved
in interface IFormatWriter
public void setValidBitsPerPixel(int bits)
IFormatWriter
setValidBitsPerPixel
in interface IFormatWriter
public boolean canDoStacks()
IFormatWriter
canDoStacks
in interface IFormatWriter
public void setMetadataRetrieve(MetadataRetrieve retrieve)
IFormatWriter
setMetadataRetrieve
in interface IFormatWriter
public MetadataRetrieve getMetadataRetrieve()
IFormatWriter
null
metadata retrieval object.getMetadataRetrieve
in interface IFormatWriter
public void setColorModel(java.awt.image.ColorModel model)
IFormatWriter
setColorModel
in interface IFormatWriter
public java.awt.image.ColorModel getColorModel()
IFormatWriter
getColorModel
in interface IFormatWriter
public void setFramesPerSecond(int rate)
IFormatWriter
setFramesPerSecond
in interface IFormatWriter
public int getFramesPerSecond()
IFormatWriter
getFramesPerSecond
in interface IFormatWriter
public java.lang.String[] getCompressionTypes()
IFormatWriter
getCompressionTypes
in interface IFormatWriter
public void setCompression(java.lang.String compress) throws FormatException
IFormatWriter
setCompression
in interface IFormatWriter
FormatException
public void setCodecOptions(CodecOptions options)
IFormatWriter
setCodecOptions
in interface IFormatWriter
options
- The options to set.public java.lang.String getCompression()
IFormatWriter
getCompression
in interface IFormatWriter
public int[] getPixelTypes()
IFormatWriter
getPixelTypes
in interface IFormatWriter
public int[] getPixelTypes(java.lang.String codec)
IFormatWriter
getPixelTypes
in interface IFormatWriter
public boolean isSupportedType(int type)
IFormatWriter
isSupportedType
in interface IFormatWriter
public void setWriteSequentially(boolean sequential)
IFormatWriter
setWriteSequentially
in interface IFormatWriter
public int getTileSizeX() throws FormatException
IFormatWriter
getTileSizeX
in interface IFormatWriter
FormatException
- Image metadata including Pixels Size X must be set prior to calling getTileSizeX()public int setTileSizeX(int tileSize) throws FormatException
IFormatWriter
setTileSizeX
in interface IFormatWriter
tileSize
- The tile width you wish to useFormatException
- Tile size must be greater than 0 and less than the image widthpublic int getTileSizeY() throws FormatException
IFormatWriter
getTileSizeY
in interface IFormatWriter
FormatException
- Image metadata including Pixels Size Y must be set prior to calling getTileSizeY()public int setTileSizeY(int tileSize) throws FormatException
IFormatWriter
setTileSizeY
in interface IFormatWriter
tileSize
- The tile height you wish to useFormatException
- Tile size must be greater than 0 and less than the image heightpublic void setId(java.lang.String id) throws FormatException, java.io.IOException
RandomAccessOutputStream
for the output
file and initializes the metadata for all the series using
setSeries(int)
.setId
in interface IFormatHandler
id
- a String
specifying the path to the fileFormatException
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
java.io.IOException
protected void checkParams(int no, byte[] buf, int x, int y, int w, int h) throws FormatException
FormatException
- if any of the arguments is invalid.protected void seekToPlaneOffset(long baseOffset, int x, int y) throws java.io.IOException
java.io.IOException
protected boolean isFullPlane(int x, int y, int w, int h)
protected int getSamplesPerPixel()
protected int getSamplesPerPixel(int series)
protected int getPlaneCount()
protected int getPlaneCount(int series)
protected loci.common.RandomAccessOutputStream createOutputStream() throws java.io.IOException
java.io.IOException
Copyright © 2018 Open Microscopy Environment