Java BufferedImage Width Get getWidth(BufferedImage image)

Here you can find the source of getWidth(BufferedImage image)

Description

get Width

License

Open Source License

Declaration

public static int getWidth(BufferedImage image) 

Method Source Code

//package com.java2s;

import java.awt.image.BufferedImage;

public class Main {

    public static int getWidth(BufferedImage image) {
        return image.getWidth();
    }/*from w ww. j  a v a 2s.c o m*/
}

Related

  1. getWidth(File file)