Lines Matching refs:img

802      * @param    img the specified image to be drawn.
812 public boolean drawImage(Image img, int x, int y,
815 return mGraphics.drawImage(img, x, y, observer);
840 * @param img the specified image to be drawn.
852 public boolean drawImage(Image img, int x, int y,
856 return mGraphics.drawImage(img, x, y, width, height, observer);
878 * @param img the specified image to be drawn.
890 public boolean drawImage(Image img, int x, int y,
894 if (img == null) {
900 if (needToCopyBgColorImage(img)) {
901 BufferedImage imageCopy = getBufferedImageCopy(img, bgcolor);
904 result = mGraphics.drawImage(img, x, y, bgcolor, observer);
935 * @param img the specified image to be drawn.
949 public boolean drawImage(Image img, int x, int y,
954 if (img == null) {
960 if (needToCopyBgColorImage(img)) {
961 BufferedImage imageCopy = getBufferedImageCopy(img, bgcolor);
964 result = mGraphics.drawImage(img, x, y, width, height,
994 * @param img the specified image to be drawn
1018 public boolean drawImage(Image img,
1022 return mGraphics.drawImage(img, dx1, dy1, dx2, dy2,
1054 * @param img the specified image to be drawn
1080 public boolean drawImage(Image img,
1086 if (img == null) {
1091 if (needToCopyBgColorImage(img)) {
1092 BufferedImage imageCopy = getBufferedImageCopy(img, bgcolor);
1098 result = mGraphics.drawImage(img,
1109 * Return true if drawing <code>img</code> will
1117 private boolean needToCopyBgColorImage(Image img) {
1139 private BufferedImage getBufferedImageCopy(Image img, Color bgcolor) {
1143 int width = img.getWidth(null);
1144 int height = img.getHeight(null);
1154 if (img instanceof BufferedImage) {
1155 BufferedImage bufImage = (BufferedImage) img;
1169 g.drawImage(img, 0, 0, bgcolor, null);
1192 * @param img The image to be drawn.
1200 public void drawRenderedImage(RenderedImage img,
1202 mGraphics.drawRenderedImage(img, xform);
1207 public void drawRenderableImage(RenderableImage img,
1210 if (img == null) {
1228 RenderedImage rendering = img.createRendering(rc);
1301 * @param img The image to be drawn.
1311 public boolean drawImage(Image img,
1315 return mGraphics.drawImage(img, xform, obs);
1323 * img1 = op.filter(img, null);
1327 * @param img The BufferedImage to be drawn.
1335 public void drawImage(BufferedImage img,
1340 mGraphics.drawImage(img, op, x, y);