(RGBImage image,
int destX,
int destY,
int x,
int y,
int width,
int height)
| 1619 | /// |
| 1620 | /// - `height`: size of the image to extract from the source image |
| 1621 | public void toRGB(RGBImage image, |
| 1622 | int destX, |
| 1623 | int destY, |
| 1624 | int x, |
| 1625 | int y, |
| 1626 | int width, |
| 1627 | int height) { |
| 1628 | getRGB(image.getRGB(), destX + destY * image.getWidth(), x, y, width, height); |
| 1629 | } |
| 1630 | |
| 1631 | /// Returns the content of this image as a newly created ARGB array. |
| 1632 | /// |
no test coverage detected