Lines Matching refs:width

301      * @param width     width of the created image
319 public BufferedImage(int width,
331 raster = colorModel.createCompatibleWritableRaster(width,
340 raster = colorModel.createCompatibleWritableRaster(width,
359 raster = colorModel.createCompatibleWritableRaster(width,
371 raster = colorModel.createCompatibleWritableRaster(width,
385 width, height,
386 width*3, 3,
400 width, height,
401 width*4, 4,
415 width, height,
416 width*4, 4,
428 raster = colorModel.createCompatibleWritableRaster(width,
440 raster = colorModel.createCompatibleWritableRaster(width,
451 width, height, 1, 1, null);
480 width, height, 1, null);
491 raster = colorModel.createCompatibleWritableRaster(width,
503 raster = colorModel.createCompatibleWritableRaster(width,
529 * @param width width of the created image
539 public BufferedImage (int width,
564 width, height, 1, bits, null);
569 width, height, 1, null);
943 * @param w width of region
1043 * @param w width of the region
1068 * Returns the width of the <code>BufferedImage</code>.
1069 * @return the width of this <code>BufferedImage</code>
1084 * Returns the width of the <code>BufferedImage</code>.
1086 * @return the width of this <code>BufferedImage</code>
1195 * @param w the width of the specified rectangular region
1346 * Returns the tile width in pixels.
1347 * @return the tile width in pixels.
1415 int width = raster.getWidth();
1427 tdata = raster.getDataElements(startX,i,width,1,tdata);
1428 wr.setDataElements(startX,i,width,1, tdata);
1446 SampleModel nsm = sm.createCompatibleSampleModel(rect.width,
1450 int width = rect.width;
1458 tdata = raster.getDataElements(startX,i,width,1,tdata);
1459 wr.setDataElements(startX,i,width,1, tdata);
1483 int width = outRaster.getWidth();
1491 tdata = raster.getDataElements(startX,i,width,1,tdata);
1492 outRaster.setDataElements(startX,i,width,1, tdata);
1509 int width = r.getWidth();
1517 Rectangle rclip = new Rectangle(startX, startY, width, height);
1518 Rectangle bclip = new Rectangle(0, 0, raster.width, raster.height);
1523 width = intersect.width;
1531 tdata = r.getPixels(startX,i,width,1,tdata);
1532 raster.setPixels(startX,i,width,1, tdata);