(Image img, int x, int y)
| 928 | /// |
| 929 | /// - `y`: the y coordinate. |
| 930 | public void drawImage(Image img, int x, int y) { |
| 931 | img.drawImage(this, nativeGraphics, x, y); |
| 932 | } |
| 933 | |
| 934 | /// Draws the image so its top left coordinate corresponds to x/y and scales it to width/height |
| 935 | /// |