📜  导入图像 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:51.091000             🧑  作者: Mango

代码示例2
// how to add image from web with Piacsso as is
Picasso.get().load("http://i.imgur.com/DvpvklR.png").into(imageView);
// add more settings to image size 
Picasso.get().resize(50, 50).centerCrop().load("http://i.imgur.com/DvpvklR.png").into(imageView);