Interface DigitalPicture
- All Known Implementing Classes:
- Picture, SimplePicture
public interface DigitalPicture
Interface to describe a digital picture. A digital picture can have a
associated file name. It can have a title. It has pixels
associated with it and you can get and set the pixels. You
can get an Image from a picture or a BufferedImage. You can load
it from a file name or image. You can show a picture. You can
create a new image for it.
Copyright Georgia Institute of Technology 2004
- Author:
- Barb Ericson ericson@cc.gatech.edu
getFileName
java.lang.String getFileName()
getTitle
java.lang.String getTitle()
setTitle
void setTitle(java.lang.String title)
getWidth
int getWidth()
getHeight
int getHeight()
getImage
java.awt.Image getImage()
getBufferedImage
java.awt.image.BufferedImage getBufferedImage()
getBasicPixel
int getBasicPixel(int x,
int y)
setBasicPixel
void setBasicPixel(int x,
int y,
int rgb)
getPixel
Pixel getPixel(int x,
int y)
load
void load(java.awt.Image image)
load
boolean load(java.lang.String fileName)
show
void show()