/* */ public AWTImageOpImage(Map config, ImageLayout layout, Image image)
/* */ {
/* 151 */ super(layout = layoutHelper(layout, image), config, layout.getSampleModel(null), layout.getMinX(null), layout.getMinY(null), layout.getWidth(null), layout.getHeight(null));
/* */
/* 157 */ if ((getTileWidth() != getWidth()) || (getTileHeight() != getHeight())) {
/* 158 */ this.rasterFormatTag = new RasterFormatTag(getSampleModel(), 0);
/* */ }
/* */
/* 164 */ this.pixels = new int[this.width * this.height];
/* 165 */ PixelGrabber grabber = new PixelGrabber(image, 0, 0, this.width, this.height, this.pixels, 0, this.width);
/* */ try