Returns the bounds of this bitmap, offset by its PixelRef origin.
()
| 303 | * Returns the bounds of this bitmap, offset by its PixelRef origin. |
| 304 | */ |
| 305 | @NotNull |
| 306 | public IRect getSubset() { |
| 307 | IPoint origin = getPixelRefOrigin(); |
| 308 | return IRect.makeXYWH(origin.getX(), origin.getY(), getWidth(), getHeight()); |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * <p>Sets width, height, ColorAlphaType, ColorType, ColorSpace. |