Sets dst to alpha described by pixels. Returns false if dst cannot be written to or dst pixels cannot be allocated. @param dst holds PixelRef to fill with alpha layer @return true if alpha layer was not constructed in dst PixelRef
(@NotNull Bitmap dst)
| 977 | * @return true if alpha layer was not constructed in dst PixelRef |
| 978 | */ |
| 979 | public boolean extractAlpha(@NotNull Bitmap dst) { |
| 980 | return extractAlpha(dst, null) != null; |
| 981 | } |
| 982 | |
| 983 | /** |
| 984 | * <p>Sets dst to alpha described by pixels. Returns false if dst cannot |
no test coverage detected