(1) 将一个位图按照需求重画一遍,画后的获得位图与位图的显示几乎同样java
drawBitmap.(Bitmap bitmap,Rect src,Rect dst,Paint paint)
(2)在原有位图的基础上放缩原位图,建立一个新的位图canvas
CreateBitmap(Bitmap source,int x, int width, int height,Matrix m ,boolean filter)
(3)借助Canvas的scale (float,sx,float,sy)方法,不过要注意此时的整个画布都放缩了post
(4)借助Matrix实现code
Bitmap bmp = BitmapFactory.decodeResource(getResource(),R.drawable.pic); Matrix matrix = new Matrix(); matrix.postScale(0.2f,0.2f); Bitmap dstbmp = Bitmap.createBitmap(bmp,0,0,bmp.getWidth(),bmp.getHeight(),matrix true); canvas.drawColor(Color.BLACK); canvas.drawBitmap(dstbmp,10,10,null);
Bitmap bmp = BitmapFactory.decodeResource(getResource(),R.drawable.pic); Matrix matrix = new Matrix(); matrix.postScale(0.8f,0.8f); matrix.postRotate(45); //多了这么一句 Bitmap dstbmp = Bitmap.createBitmap(bmp,0,0,bmp.getWidth(),bmp.getHeight(),matrix true); canvas.drawColor(Color.BLACK); canvas.drawBitmap(dstbmp,10,10,null);