Uses of Interface
Picture

Uses of Picture in
 

Classes in Default Package that implement Picture
 class CombineLeftRight
          LeftRight - Combines two pictures into a single larger picture with one input picture on the left and one input picture on the right
 class CombineTopBottom
          You must implement this class as described in the description for Homework #3.
 class Double
          You must implement this class as described in the description for Homework #3.
 class FlipLeftRight
          FlipLeftRight - Flips the specified picture along the vertical axis.
 class Green
          Green - Filters the specified picture to show only the green color channel.
 class Image
          ImagePicture - A picture created from an image.
 class RedBlackSquare
          RedBlackSquare - A picture containing a smaller red square embedded within a larger black square.
 class RedSquare
          RedSquare - The simplest picture: a solid square of a single color
 class Stripes
          You must implement this class as described in the description for Homework #3.
 

Methods in Default Package with parameters of type Picture
static void PictureUtil.show(Picture picture, java.lang.String title)
          Displays a picture with title
static void PictureUtil.show(Picture picture)
          Displays a picture.
static void PictureUtil.save(Picture picture, java.lang.String fileName)
          Saves the specified picture to the specified file as a JPEG image.
 

Constructors in Default Package with parameters of type Picture
Green(Picture basePicture)
           
CombineTopBottom(Picture basePicture1, Picture basePicture2)
           
Double(Picture basePicture)
           
FlipLeftRight(Picture basePicture)
          Constructs the new flipped picture based on the input picture
CombineLeftRight(Picture leftPicture, Picture rightPicture)
          Constructs a new picture combining two input pictures.