-4
A
回答
1
下面的代碼將幫助您將base64
字符串轉換成圖像。
public void saveAsImage(String attachThumbnail) {
byte[] previewImage = Base64.decode(attachThumbnail, Base64.NO_WRAP);
final File file = new File("[dir]", "image_name" + ".jpg");
save(file, previewImage);
}
/**
* To save the content in a file.
*
* @param file file to be store.
* @param content actual data.
*/
public static void save(File file, byte[] content) {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(file);
fos.write(content);
} catch (FileNotFoundException e) {
// e.printStackTrace();
} catch (IOException e) {
// e.printStackTrace();
} finally {
try {
if (fos != null) {
fos.close();
}
} catch (IOException ioe) {
}
}
}
0
好的,如果你想從URL加載圖片,你可以做的最好的事情就是使用一個好的庫。我會建議使用Glide庫,因爲它快速且穩定。爲此,該行添加到您的build.gradle
文件dependencies
部分:
compile 'com.github.bumptech.glide:glide:3.7.0'
然後使用此方法加載所需imageUrl
到所需ImageView
。
public void loadImageWithGlide(Context context, String imageUrl, ImageView holder) {
Glide.with(context).load(imageUrl)
.thumbnail(0.5f)
.crossFade()
.dontAnimate()
.diskCacheStrategy(DiskCacheStrategy.ALL)
.into(holder);
}
相關問題
- 1. 我怎麼會jQuery對象轉換爲字符串?
- 2. 在bash shell腳本我怎麼一個字符串轉換爲一個數
- 3. 將圖像數據InputStream轉換爲字符串並從此字符串返回圖像不會給出圖像
- 4. 我怎麼能存儲的int數組轉換爲字符串
- 5. 我怎麼能傳遞一個圖像數據controiller並轉換成字節
- 6. 我怎麼能轉換爲字符串(JSON)看起來像另一個字符串
- 7. 怎麼辦JSON字符串轉換爲字符串
- 8. HTML&CSS:將字體和圖像轉換爲數據字符串
- 9. 我怎麼能將數據從字符串轉換爲長在C#
- 10. VisualStudio的 - 我怎麼能一個對象內容轉換爲字符串
- 11. 我怎麼添加字符串擴展將字符串轉換爲UTF8
- 12. 我怎麼可以注入一個字符串轉換成我的班,統一
- 13. 將字符串轉換爲圖像
- 14. 將HTML字符串轉換爲圖像
- 15. Android - 將字符串轉換爲圖像
- 16. 將字符串轉換爲LateX圖像?
- 17. 字符串轉換爲圖像android
- 18. 我怎麼能轉換爲字符串翻番沒有迅速
- 19. 轉換一個字符串轉換爲字符串
- 20. 這個函數怎麼會不會截斷我的字符串?
- 21. ,我怎麼能在一個字符串
- 22. 我怎麼能在一個字符串
- 23. SQL Server:將圖像數據轉換爲字符串
- 24. JavaScript - 將數據base64字符串轉換爲圖像
- 25. 將圖像轉換爲字符串的數據大小
- 26. 將字符串數據轉換爲二進制圖像
- 27. 如何將png圖像字符串數據轉換爲png?
- 28. 我怎麼會這個數組轉換爲這個JSON格式
- 29. 字符串數據轉換爲字典
- 30. 將字符串轉換爲數組(不是你怎麼看)
你的意思是你想一個base64字符串轉換爲圖像? –
沒有我的意思是如何將URL字符串轉換爲圖像。 – ZachGiovanelli
最終LoaderImageView圖像=新LoaderImageView(此,getAnImageUrl());它說的AttributeSet不能應用於java.string「getAnImageUrl」我不明白這個問題,因爲在所有它應該工作。它說參數不匹配。謝謝。 – ZachGiovanelli