码迷,mamicode.com
首页 > 其他好文 > 详细

利用canvas和bitmap如何对图片缩放到适应屏幕大小?

时间:2014-11-07 19:17:53      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:public   matrix   

创建你自己想要大小的 bitmap   

public static Bitmap resizeBitmap(Bitmap bitmap, int w, int h) {
        if (bitmap != null) {
            int width = bitmap.getWidth();
            int height = bitmap.getHeight();
            int newWidth = w;
            int newHeight = h;
            float scaleWidth = ((float) newWidth) / width;
            float scaleHeight = ((float) newHeight) / height;
            Matrix matrix = new Matrix();
            matrix.postScale(scaleWidth, scaleHeight);
            Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0, width,
                    height, matrix, true);
            return resizedBitmap;
        } else {
            return null;
        }
    }
    public static Bitmap resizeBitmap(String path,int  width,int height){
        BitmapFactory.Options options = new BitmapFactory.Options();
            options.inJustDecodeBounds = true;
            options.outWidth = width;
            options.outHeight = height;
           
         Bitmap bmp = BitmapFactory.decodeFile(path, options);
        options.inSampleSize = options.outWidth / height;
    options.inJustDecodeBounds = false;
     bmp = BitmapFactory.decodeFile(path, options);
    return bmp;
    }


本文出自 “小书童” 博客,请务必保留此出处http://8988940.blog.51cto.com/8978940/1574099

利用canvas和bitmap如何对图片缩放到适应屏幕大小?

标签:public   matrix   

原文地址:http://8988940.blog.51cto.com/8978940/1574099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!