码迷,mamicode.com
首页 > 移动开发 > 详细

android 关于图片缩放,旋转的简单应用

时间:2015-01-04 15:27:28      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:图片   android   bitmap   

右转

private void right() {
		// TODO Auto-generated method stub
		int bmpW = bm.getWidth() ; 
		int bmpH = bm.getHeight() ;
		double scale =1 ;
		scaleW = (float)(scaleW*scale);
        scaleH = (float)(scaleH*scale);
        Matrix mt =new Matrix ();
        	mt .postScale(scaleW, scaleH); 
        	
        mt.setRotate(curDegrees=curDegrees+5);
        Bitmap bitmap= Bitmap.createBitmap(bm, 0, 0, bmpW, bmpH, mt, true);
        iv.setImageBitmap(bitmap);
	}
左转 

 

private void left() {
		int bmpW = bm.getWidth() ; 
		int bmpH = bm.getHeight() ;
		double scale =1 ;
		scaleW = (float)(scaleW*scale);
        scaleH = (float)(scaleH*scale);
        Matrix mt =new Matrix ();
        	mt .postScale(scaleW, scaleH); 
        mt.setRotate(curDegrees=curDegrees-5);
        Bitmap bitmap= Bitmap.createBitmap(bm, 0, 0, bmpW, bmpH, mt, true);
        iv.setImageBitmap(bitmap);
	}
缩小 

private void small() {
        int width  =bm.getWidth() ; 
        int height = bm.getHeight() ;
        double  scale = 0.8;
        scaleW= (float) (scale*scaleW) ;
		scaleH = (float) (scaleH*scale) ;
		Matrix mt =new Matrix ();  
		mt.postScale(scaleW, scaleH);
		Bitmap resizebmp = Bitmap.createBitmap(bm,0,0,width,height,mt,true); 
		iv.setImageBitmap(resizebmp);
		
	}

放大 

private void big() {
		 int bmpW = bm.getWidth() ; 
		 int bmpH = bm.getHeight() ;
		 double scale =1.25 ; 
		 scaleW = (float) (scaleW*scale) ; 
		 scaleH = (float) (scaleH * scale) ;
		 Matrix mt = new Matrix () ; 
		 mt.postScale(scaleW, scaleH) ;
		 Bitmap bmp = Bitmap.createBitmap(bm, 0, 0, bmpW, bmpH, mt, true) ;
		 iv.setImageBitmap(bmp);
	}





android 关于图片缩放,旋转的简单应用

标签:图片   android   bitmap   

原文地址:http://blog.csdn.net/u014781439/article/details/42390419

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