所以我希望能够从我的s3水桶中抓取我的图像并(使用滑翔或毕加索)将图像加载到imageview中。 (我不想将该图像下载到手机中)。
目前我有这个:
downloadButton = (Button) findViewById(R.id.cognito_s3DownloadButton);
downloadButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
File file = new File(Environment.getExternalStorageDirectory().toString() + "/" + "fromAWS");
observer = transferUtility.download("zivit-card-images","image1", file);
Glide.with(getBaseContext()).load("image in byes? or url?").centerCrop().into(myImageView);
}
});
同样,我如何从s3中检索图像并将其插入到imageview中?
答案 0 :(得分:2)
public String downloadimage()
{
Calendar cal = Calendar.getInstance();
cal.setTime(new Date());
cal.add(Calendar.HOUR, +1);
Date oneHourLater = cal.getTime();
AmazonS3 s3 = new AmazonS3Client(credentialsProvider);
URL url = s3.generatePresignedUrl(
"testproject12345",
"first.jpg",
oneHourLater
);
Log.e("url was", url.toString());
String urlstring = url.toString();
return urlstring;
}
catch that function in your activity
download = (Button)findViewById(R.id.download);
final ImageView imageview = (ImageView) findViewById(R.id.image);
download.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
download1 = new Uploader(getmain().getCredentialsProvider(),getApplicationContext());
String url = download1.downloadimage();
Picasso.with(getApplicationContext())
.load(url)
.into(imageview);
}
});
答案 1 :(得分:1)
使用Glide或Picasso时,您无需担心image
将被保存的位置。 Picasso或Glide会照顾Caching
,因此您不必这样做。
现在,使用Glide或Picasso将图像设置为ImageView所需的只是图像URL
。我想您想使用S3存储桶中的图像,然后需要从S3存储桶中获取图像,如下所示:
https://a2.muscache.com/im/pictures/9c66dcc5-6d39-43b3-82ec-72e9d119f873.jpg
然后您需要处理的代码是:
downloadButton = (Button) findViewById(R.id.cognito_s3DownloadButton);
downloadButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Glide.with(getBaseContext())
.load("https://a2.muscache.com/im/pictures/9c66dcc5-6d39-43b3-82ec-72e9d119f873.jpg")
.centerCrop()
.into(myImageView);
}
});
答案 2 :(得分:0)
如@Prog所示,您必须使用
amazonS3Client!!.generatePresignedUrl({your_bucket_name}, {your_key_image_file}, {expiration_date_of_url})
生成比Picasso可以使用的网址。
但是要小心,您只能在第一次生成该URL。存储它并在不过期时重新使用它。 每次您使用aws方法生成一个URL时,响应都是一个新的URL。因此,您不会将图像保存在缓存中,因为他的关联URL是另一个URL。您将再次进行http呼叫。
对不起,我的英语, 希望是帮助, 托马斯