Java BufferedImage Operation outPutImage(BufferedImage bufferedimage, String targetPath)

Here you can find the source of outPutImage(BufferedImage bufferedimage, String targetPath)

Description

out Put Image

License

Open Source License

Declaration

public final static void outPutImage(BufferedImage bufferedimage, String targetPath) throws IOException 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.awt.image.BufferedImage;

import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;

public class Main {

    public final static void outPutImage(BufferedImage bufferedimage, String targetPath) throws IOException {
        ImageIO.write(bufferedimage, "JPEG", new File(targetPath));
    }//  w w w  .  j a v a2  s.  c  o m
}

Related

  1. optimizeForGraphicsHardware(BufferedImage image)
  2. optimizeForGraphicsHardwareIfRequired(BufferedImage image)
  3. optimizeImage(BufferedImage image)
  4. otsuTreshold(BufferedImage original)
  5. output(BufferedImage image, OutputStream out)
  6. paletteSwapARGB8(Color[] colorSet, Color clearToColorRequested, BufferedImage argbMappedBufferedImage)
  7. palettize(BufferedImage img, int maxEntries)
  8. performRescaleOperation(BufferedImage image, float scale, float offset)
  9. prepareModel(BufferedImage model)