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)
| 876 | * @return true if alpha layer was not constructed in dst PixelRef |
| 877 | */ |
| 878 | public boolean extractAlpha(@NotNull Bitmap dst) { |
| 879 | return extractAlpha(dst, null) != null; |
| 880 | } |
| 881 | |
| 882 | /** |
| 883 | * <p>Sets dst to alpha described by pixels. Returns false if dst cannot |
no test coverage detected