| D | Region.java | 14 private BufferedImage master; field in Region 20 …public Region(BufferedImage master, String format, FileChannel channel, BufferedImage prev, boolea… in Region() argument 21 this.master = master; in Region() 39 public Region(MappedImage master) throws IOException { in Region() argument 40 this.image = master; in Region() 45 setBounds(0,0,master.getWidth(),master.getHeight()); in Region() 46 BufferedImage img = master.getImage(); in Region() 47 for (int sx=0, sw=master.getWidth(); sx<sw; ++sx) { in Region() 48 for (int sy=0, sh=master.getHeight(); sy<sh; ++sy) { in Region() 66 int widthDelta = imageWidth+imageLocation.x - master.getWidth(); in grabImage() [all …]
|