ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

Glide将网络图片压缩成指定大小并保存到本地

Glide将网络图片压缩成指定大小并保存到本地
private static void toPNG(Context context, String string, File output, int width, int height){
try{
Glide.with(context)
.load(string)
.asBitmap()
.override(width, height)
.get()
.compress(Bitmap.CompressFormat.PNG, 100, new FileOutputStream(output));
}catch (Exception e){
e.printStackTrace();
log(e.getMessage());
}
}
返回列表