Searched refs:byteStream (Results 1 – 2 of 2) sorted by relevance
255 ByteArrayOutputStream byteStream = null; in toAsset() local257 byteStream = new ByteArrayOutputStream(); in toAsset()258 bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteStream); in toAsset()259 return Asset.createFromBytes(byteStream.toByteArray()); in toAsset()261 if (null != byteStream) { in toAsset()263 byteStream.close(); in toAsset()
165 final ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); in createAssetFromBitmap() local166 bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteStream); in createAssetFromBitmap()167 return Asset.createFromBytes(byteStream.toByteArray()); in createAssetFromBitmap()