首页 > 代码库 > 利用canvas和bitmap如何对图片缩放到适应屏幕大小?
利用canvas和bitmap如何对图片缩放到适应屏幕大小?
创建你自己想要大小的 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如何对图片缩放到适应屏幕大小?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。