如何在ImageLoader中加载URL后获取原始位图大小Android的

时间:2017-02-23 14:04:19

标签: android bitmap android-bitmap universal-image-loader

问候!!! 希望你们做得很棒!!!

我正在使用Universal Image Loader,我需要从网址获取原始位图。

这是我的代码 -

    imageLoaderNew.loadImage(bean.getPostMedia().get(i).getUrl(), optionsPostImg,
       new SimpleImageLoadingListener() {
       @Override
        public void onLoadingComplete(String imageUri,
                                      View view,
                                     Bitmap loadedImage) {
     // Do whatever you want with Bitmap
                                                      }
                                      });

loadedImage的高度和宽度与原始位图的高度和宽度不一样

我的原始图像高度宽度为2208,1108,但图像加载器未提供原始位图。

这是图像加载器的配置 -

  optionsPostImg = new DisplayImageOptions.Builder()
                    .showImageOnLoading(R.drawable.post_img_default) //
                    .showImageForEmptyUri(R.drawable.post_img_default)
                    .showImageOnFail(R.drawable.post_img_default)

                    .cacheInMemory(true)
                    .cacheOnDisk(true)
                    .considerExifParams(true)
                    .imageScaleType(ImageScaleType.EXACTLY)

                    .build();

请告诉我如何获取原始位图。

1 个答案:

答案 0 :(得分:0)

如果原始图片太大会导致内存不足,请不要下载原始图片,但无论如何,您可以从给定的网址下载原始文件。

public Bitmap getBitmapFromURL(String src) {
    try {
        java.net.URL url = new java.net.URL(src);
        HttpURLConnection connection = (HttpURLConnection) url
                .openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap myBitmap = BitmapFactory.decodeStream(input);
        return myBitmap;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }
}

如果您遇到内存问题,那么您可以使用以下

public Bitmap getResizedBitmap(Bitmap bm, int newHeight, int newWidth) {
    int width = bm.getWidth();
    int height = bm.getHeight();
    float scaleWidth = ((float) newWidth) / width;
    float scaleHeight = ((float) newHeight) / height;
    // CREATE A MATRIX FOR THE MANIPULATION
    Matrix matrix = new Matrix();
    // RESIZE THE BIT MAP
    matrix.postScale(scaleWidth, scaleHeight);

    // "RECREATE" THE NEW BITMAP
    Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height,
            matrix, false);

    return resizedBitmap;
}