Java BufferedImage Operation output(BufferedImage image, OutputStream out)

Here you can find the source of output(BufferedImage image, OutputStream out)

Description

output

License

Open Source License

Declaration

public static void output(BufferedImage image, OutputStream out) throws IOException 

Method Source Code


//package com.java2s;
import javax.imageio.ImageIO;

import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;

public class Main {
    public static void output(BufferedImage image, OutputStream out) throws IOException {
        ImageIO.write(image, "JPEG", out);
    }/*from   w w w .  j av  a 2 s. c om*/
}

Related

  1. operatedImage(BufferedImage source, BufferedImageOp op)
  2. optimizeForGraphicsHardware(BufferedImage image)
  3. optimizeForGraphicsHardwareIfRequired(BufferedImage image)
  4. optimizeImage(BufferedImage image)
  5. otsuTreshold(BufferedImage original)
  6. outPutImage(BufferedImage bufferedimage, String targetPath)
  7. paletteSwapARGB8(Color[] colorSet, Color clearToColorRequested, BufferedImage argbMappedBufferedImage)
  8. palettize(BufferedImage img, int maxEntries)
  9. performRescaleOperation(BufferedImage image, float scale, float offset)