Class BmpEncoder

java.lang.Object
com.idrsolutions.image.JDeliImage
com.idrsolutions.image.bmp.BmpEncoder
All Implemented Interfaces:
com.idrsolutions.image.Encoder

public class BmpEncoder extends com.idrsolutions.image.JDeliImage implements com.idrsolutions.image.Encoder
Class writes BufferedImages as Bmp Example:

 BmpEncoder encoder = new BmpEncoder();
 encoder.write(image, outputStream);
 
  • Constructor Details

    • BmpEncoder

      public BmpEncoder(EncoderOptions format)
    • BmpEncoder

      public BmpEncoder()
  • Method Details

    • getEncoderOptions

      public BmpEncoderOptions getEncoderOptions()
    • write

      public void write(BufferedImage image, OutputStream outputStream) throws IOException
      Writes BufferedImage as a BMP into an OutputStream

      This method does not close the provided OutputStream after the write operation has completed; it is the responsibility of the caller to close the stream.

      Specified by:
      write in interface com.idrsolutions.image.Encoder
      Parameters:
      image - BufferedImage to write
      outputStream - The stream to write the image to
      Throws:
      IOException - if the image wasn't written