public class BitmapBytesTranscoder extends Object implements ResourceTranscoder<Bitmap,byte[]>
ResourceTranscoder that converts Bitmaps into byte arrays using (android.graphics.Bitmap.CompressFormat,
int, java.io.OutputStream).| Constructor and Description |
|---|
BitmapBytesTranscoder() |
BitmapBytesTranscoder(Bitmap.CompressFormat compressFormat,
int quality) |
| Modifier and Type | Method and Description |
|---|---|
Resource<byte[]> |
transcode(Resource<Bitmap> toTranscode,
Options options)
Transcodes the given resource to the new resource type and returns the new resource.
|
public BitmapBytesTranscoder()
public BitmapBytesTranscoder(Bitmap.CompressFormat compressFormat, int quality)
public Resource<byte[]> transcode(Resource<Bitmap> toTranscode, Options options)
ResourceTranscodertranscode in interface ResourceTranscoder<Bitmap,byte[]>toTranscode - The resource to transcode.