All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.graphics.Bitmap Maven / Gradle / Ivy

package android.graphics;

import java.awt.image.BufferedImage;

/**
 * A basic stub implementation to use for testing.
 * 
 * @author Chris Hennigfeld
 */
public class Bitmap {

	private final BufferedImage image;

	public Bitmap(BufferedImage image) {
		this.image = image;
	}

	public int getHeight() {
		return image.getHeight();
	}

	public int getWidth() {
		return image.getWidth();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy