/**
* Download Captured Image Data
* Change to Image object from file form of Image data
*/
private void downloadCapturedImageData(InputStream inputStream) {
// inputStream -> bitmap -> file
BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
Bitmap imageBitmapData = BitmapFactory.decodeStream(bufferedInputStream);
imageToGallery(imageBitmapData);
}
RetrofitDownloadData.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:Clipcon-AndroidClient
作者:
评论列表
文章目录