3

我使用以下代码下载图像:

ImageGetter imageGetter = new ImageGetter() {
    @Override
    public Drawable getDrawable(String source) {
        Drawable drawable = null;
        try {
            URL url = new URL(source);
            String path = Environment.getExternalStorageDirectory().getPath()+"/Android/data/com.my.pkg/"+url.getFile();
            File f=new File(path);
            if(!f.exists()) {
                URLConnection connection = url.openConnection();
                InputStream is = connection.getInputStream();

                f=new File(f.getParent());
                f.mkdirs();                 

                FileOutputStream os = new FileOutputStream(path);
                byte[] buffer = new byte[4096];
                int length;
                while ((length = is.read(buffer)) > 0) {
                    os.write(buffer, 0, length);
                }
                os.close();
                is.close();
            }
            drawable = Drawable.createFromPath(path);
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (Throwable t) {
            t.printStackTrace();
        }
        if(drawable != null) {
            drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
        }
        return drawable;
    }
};

此图像的尺寸为 20x20。但是 drawable.getIntrinsicWidth() 和 drawable.getIntrinsicHeight() 返回 27。而且图像看起来更大。我该如何解决?

4

2 回答 2

7

我尝试了答案中的代码,但没有奏效。因此,我使用了下面的代码,它运行良好。

     DisplayMetrics dm = context.getResources().getDisplayMetrics();

     Options options=new Options();
     options.inDensity=dm.densityDpi;
     options.inScreenDensity=dm.densityDpi;
     options.inTargetDensity=dm.densityDpi;      

     Bitmap bmp = BitmapFactory.decodeFile(path,options);
     drawable = new BitmapDrawable(bmp, context.getResources());
于 2013-05-13T18:01:55.113 回答
6

BitmapDrawable 必须缩放位图以补偿不同的屏幕密度。

如果您需要它逐像素绘制,请尝试将 Drawable 的源密度和目标密度设置为相同的值。为此,您需要使用稍微不同的对象。

代替

drawable = Drawable.createFromPath(path);

采用

Bitmap bmp = BitmapFactory.decodeFile(path);
DisplayMetrics dm = context.getResources().getDisplayMetrics();
bmp.setDensity(dm.densityDpi);
drawable = new BitmapDrawable(bmp, context.getResources());

如果您没有上下文(您应该),您可以使用应用程序上下文,请参阅例如在任何地方使用应用程序上下文?

由于位图的密度设置为资源的密度,这是实际设备屏幕的密度,所以它应该在没有缩放的情况下绘制。

于 2012-10-22T15:45:07.433 回答