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
-
Method Summary
Modifier and TypeMethodDescriptionintgetBasicPixel(int x, int y) intgetImage()getPixel(int x, int y) getTitle()intgetWidth()voidsetBasicPixel(int x, int y, int rgb) voidvoidshow()
-
Method Details
-
getFileName
String getFileName() -
getTitle
String getTitle() -
setTitle
-
getWidth
int getWidth() -
getHeight
int getHeight() -
getImage
Image getImage() -
getBufferedImage
BufferedImage getBufferedImage() -
getBasicPixel
int getBasicPixel(int x, int y) -
setBasicPixel
void setBasicPixel(int x, int y, int rgb) -
getPixel
-
show
void show()
-