< prev index next >
src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/BMPImageWriter.java
Print this page
*** 67,77 ****
/**
* The Java Image IO plugin writer for encoding a binary RenderedImage into
* a BMP format.
*
* The encoding process may clip, subsample using the parameters
! * specified in the <code>ImageWriteParam</code>.
*
* @see javax.imageio.plugins.bmp.BMPImageWriteParam
*/
public class BMPImageWriter extends ImageWriter implements BMPConstants {
/** The output stream to write into */
--- 67,77 ----
/**
* The Java Image IO plugin writer for encoding a binary RenderedImage into
* a BMP format.
*
* The encoding process may clip, subsample using the parameters
! * specified in the {@code ImageWriteParam}.
*
* @see javax.imageio.plugins.bmp.BMPImageWriteParam
*/
public class BMPImageWriter extends ImageWriter implements BMPConstants {
/** The output stream to write into */
*** 86,97 ****
private int[] bitPos;
private byte[] bpixels;
private short[] spixels;
private int[] ipixels;
! /** Constructs <code>BMPImageWriter</code> based on the provided
! * <code>ImageWriterSpi</code>.
*/
public BMPImageWriter(ImageWriterSpi originator) {
super(originator);
}
--- 86,97 ----
private int[] bitPos;
private byte[] bpixels;
private short[] spixels;
private int[] ipixels;
! /** Constructs {@code BMPImageWriter} based on the provided
! * {@code ImageWriterSpi}.
*/
public BMPImageWriter(ImageWriterSpi originator) {
super(originator);
}
< prev index next >