我有一个奇怪的问题,我已经尝试解决它几个小时了。问题是下面的代码可以解码除名称中首字母小的那些图像之外的所有图像。例如,它适用于Dog.png或123.png,但它不适用于dog.png,cat.png或任何其他小字母。它只是为它们显示一些随机颜色。我糊涂了。有什么想法吗?
Bitmap bitmap = null;
options.inJustDecodeBounds = false;
try {
bitmap = BitmapFactory.decodeStream((InputStream)new URL(imagePath).getContent(), null, options);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
image.setImageBitmap(bimage);
答案 0 :(得分:2)
我找到了解决方案。来自这些网址的图片可以被解码,但问题是它太大了,所以它显示得非常放大,看起来没有显示。
首先,我们需要捕捉这样的图像描述:
options.inJustDecodeBounds = true;
BitmapFactory.decodeStream((InputStream)new URL(url).getContent(), null, options);
然后将其缩放到所需的宽度/高度,reqHeight / reqWidth是所需的尺寸参数:
int height = options.outHeight;
int width = options.outWidth;
int inSampleSize;
if (height > reqHeight || width > reqWidth) {
if (width > height) {
inSampleSize = Math.round((float)height / (float)reqHeight);
}
else {
inSampleSize = Math.round((float)width / (float)reqWidth);
}
}
之后只需重复该问题的代码:
Bitmap bitmap = null;
options.inJustDecodeBounds = false;
try {
bitmap = BitmapFactory.decodeStream((InputStream)new URL(imagePath).getContent(), null, options);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
现在我们可以将它保存到某个目录:
File file = new File(some_path\image.png);
if (!file.exists() || file.length() == 0) {
file.createNewFile();
FileOutputStream fos = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.close();
fos.flush();
现在已保存图像,我们可以抓取它并在我们的ImageView中显示,名为image:
Bitmap bitmap = BitmapFactory.decodeFile(some_path\image.png);
image.setImageBitmap(bitmap);