public interface BitmapProcessor
Bitmap
. Implementations can apply any changes to original Bitmap
.Modifier and Type | Method and Description |
---|---|
android.graphics.Bitmap |
process(android.graphics.Bitmap bitmap)
Makes some processing of incoming bitmap.
This method is executing on additional thread (not on UI thread). Note: If this processor is used as pre-processor then don't forget to recycle incoming bitmap if you return a new created one. |
android.graphics.Bitmap process(android.graphics.Bitmap bitmap)
bitmap
- Original bitmap