Java BufferedImage Subimage getSubImage(BufferedImage image, int x, int y, int w, int h)

Here you can find the source of getSubImage(BufferedImage image, int x, int y, int w, int h)

Description

get Sub Image

License

Apache License

Declaration

public static BufferedImage getSubImage(BufferedImage image, int x, int y, int w, int h) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.awt.image.BufferedImage;

public class Main {
    public static BufferedImage getSubImage(BufferedImage image, int x, int y, int w, int h) {
        return image.getSubimage(x, y, w, h);
    }/*from   ww w.java2s.c  o m*/
}

Related

  1. getSubimage(BufferedImage image, int x, int y, int w, int h)
  2. getSubimage(BufferedImage image, int x, int y, int width, int height)
  3. getSubImage(BufferedImage image, int x, int y, int width, int height)
  4. getSubimage(BufferedImage image, int x, int y, int width, int height)