我的地图引脚尺寸有一个奇怪的问题。为了保持动态性,不同类别的地图引脚存储在站点的服务器上,以便即使在应用程序发布后也可以随时更改它们。
我每次下载它时都会缓存这些引脚,如果服务器发回一点说自从我上次下载后发生了变化,我只会重新下载它们。我第一次抓住引脚,在将它们保存到文件之前使用位图,并且地图标记的大小正确。每次之后我都会直接从图像文件中加载一个保存的引脚版本。与使用首次下载的位图时相比,它们显示的更小。
起初,我认为这是我保存PNG的方式的问题,但它们的大小是正确的(64 x 64)。这是dip / px问题还是我需要用某种选项解压缩图像文件?
这是我第一次抓图像的方式:
public static Bitmap loadMapPin(String category, int width, int height) {
URL imageUrl;
category = category.toLowerCase().replace(" ", "");
try {
imageUrl = new URL(PIN_URL+category+".png");
InputStream is = (InputStream) imageUrl.getContent();
Options options = new Options();
options.inJustDecodeBounds = true; //Only find the dimensions
//Decode without downloading to find dimensions
BitmapFactory.decodeStream(is, null, options);
boolean scaleByHeight = Math.abs(options.outHeight - height) >= Math.abs(options.outWidth - width);
if(options.outHeight * options.outWidth >= width * height){
// Load, scaling to smallest power of 2 that'll get it <= desired dimensions
double sampleSize = scaleByHeight
? options.outHeight / height
: options.outWidth / width;
options.inSampleSize =
(int)Math.pow(2d, Math.floor(
Math.log(sampleSize)/Math.log(2d)));
}
options.inJustDecodeBounds = false; //Download image this time
is.close();
is = (InputStream) imageUrl.getContent();
Bitmap img = BitmapFactory.decodeStream(is, null, options);
return img;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
以下是我从缓存文件中加载它们的方法:
BitmapFactory.decodeFile(filepath);
提前致谢!
答案 0 :(得分:0)
我发现,默认情况下,将图像解压缩到位图不能使用高密度屏幕进行缩放。您必须将密度设置为无。换句话说,您指定图像是针对未知密度的。
解决方案:
Bitmap b = BitmapFactory.decodeFile(filepath);
b.setDensity(Bitmap.DENSITY_NONE);