Package mil.nga.tiff

Class ImageWindow


  • public class ImageWindow
    extends Object
    Coordinates of a window over a portion or the entire image coordinates
    Author:
    osbornb
    • Constructor Detail

      • ImageWindow

        public ImageWindow​(int minX,
                           int minY,
                           int maxX,
                           int maxY)
        Constructor
        Parameters:
        minX - min x (inclusive)
        minY - min y (inclusive)
        maxX - max x (exclusive)
        maxY - max y (exclusive)
      • ImageWindow

        public ImageWindow​(int x,
                           int y)
        Constructor for a single coordinate
        Parameters:
        x - x coordinate
        y - y coordinate
      • ImageWindow

        public ImageWindow​(FileDirectory fileDirectory)
        Constructor, full image size
        Parameters:
        fileDirectory - file directory
    • Method Detail

      • getMinX

        public int getMinX()
        Get the min x
        Returns:
        min x
      • setMinX

        public void setMinX​(int minX)
        Set the min x
        Parameters:
        minX - min x
      • getMinY

        public int getMinY()
        Get the min y
        Returns:
        min y
      • setMinY

        public void setMinY​(int minY)
        Set the min y
        Parameters:
        minY - min y
      • getMaxX

        public int getMaxX()
        Get the max x
        Returns:
        max x
      • setMaxX

        public void setMaxX​(int maxX)
        Set the max x
        Parameters:
        maxX - max x
      • getMaxY

        public int getMaxY()
        Get the max y
        Returns:
        max y
      • setMaxY

        public void setMaxY​(int maxY)
        Set the max y
        Parameters:
        maxY - max y