Decodes an image into a bitmap. @return decoded bitmap
()
| 81 | * @return decoded bitmap |
| 82 | */ |
| 83 | @NotNull @Contract("_ -> new") |
| 84 | public Bitmap readPixels() { |
| 85 | Bitmap bitmap = new Bitmap(); |
| 86 | bitmap.allocPixels(getImageInfo()); |
| 87 | readPixels(bitmap); |
| 88 | return bitmap; |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * <p>Decodes an image into a bitmap.</p> |