Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 問題小結(24)--獲取已有圖片的鏡像圖片

問題小結(24)--獲取已有圖片的鏡像圖片

編輯:關於Android編程

方法如下,通過Matrix對圖片進行處理。


[java] 
public Bitmap convertBmp(Bitmap bmp){ 
    int w = bmp.getWidth(); 
    int h = bmp.getHeight(); 
 
    Bitmap convertBmp = Bitmap.createBitmap(w, h, Config.ARGB_8888);// 創建一個新的和SRC長度寬度一樣的位圖  
    Canvas cv = new Canvas(convertBmp); 
    Matrix matrix = new Matrix(); 
    matrix.postScale(1, -1); //鏡像垂直翻轉  
//  matrix.postScale(-1, 1); //鏡像水平翻轉  
//  matrix.postRotate(-90); //旋轉-90度  
 
    Bitmap newBmp = Bitmap.createBitmap(bmp, 0, 0, w, h, matrix, true); 
    cv.drawBitmap(newBmp, new Rect(0, 0,newBmp.getWidth(), newBmp.getHeight()),new Rect(0, 0, w, h), null); 
    return convertBmp; 
    } 

public Bitmap convertBmp(Bitmap bmp){
 int w = bmp.getWidth();
 int h = bmp.getHeight();

 Bitmap convertBmp = Bitmap.createBitmap(w, h, Config.ARGB_8888);// 創建一個新的和SRC長度寬度一樣的位圖
 Canvas cv = new Canvas(convertBmp);
 Matrix matrix = new Matrix();
 matrix.postScale(1, -1); //鏡像垂直翻轉
// matrix.postScale(-1, 1); //鏡像水平翻轉
// matrix.postRotate(-90); //旋轉-90度

 Bitmap newBmp = Bitmap.createBitmap(bmp, 0, 0, w, h, matrix, true);
 cv.drawBitmap(newBmp, new Rect(0, 0,newBmp.getWidth(), newBmp.getHeight()),new Rect(0, 0, w, h), null);
 return convertBmp;
 }

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved