Returns the bounds of this bitmap, offset by its PixelRef origin.
()
| 329 | * Returns the bounds of this bitmap, offset by its PixelRef origin. |
| 330 | */ |
| 331 | @NotNull |
| 332 | public IRect getSubset() { |
| 333 | IPoint origin = getPixelRefOrigin(); |
| 334 | return IRect.makeXYWH(origin.getX(), origin.getY(), getWidth(), getHeight()); |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * <p>Sets width, height, ColorAlphaType, ColorType, ColorSpace. |
no test coverage detected