Android之圖片處理(圖片合成、圖片圓角、圖片翻轉、圖片縮放)

來源:互聯網
上載者:User

圖片合成

/**
* 圖片合成
* @param bitmap
* @return
*/
private Bitmap createBitmap( Bitmap src, Bitmap watermark ) {
if( src == null ) {
return null;
}
int w = src.getWidth();
int h = src.getHeight();
int ww = watermark.getWidth();
int wh = watermark.getHeight();
//create the new blank bitmap
Bitmap newb = Bitmap.createBitmap( w, h, Config.ARGB_8888 );//建立一個新的和SRC長度寬度一樣的位元影像
Canvas cv = new Canvas( newb );
//draw src into
cv.drawBitmap( src, 0, 0, null );//在 0,0座標開始畫入src
//draw watermark into
cv.drawBitmap( watermark, w - ww + 5, h - wh + 5, null );//在src的右下角畫入浮水印
//save all clip
cv.save( Canvas.ALL_SAVE_FLAG );//儲存
//store
cv.restore();//儲存
return newb;
}

圖片圓角

/**
* 圖片圓角
* @param bitmap
* @return
*/
public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) {
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
bitmap.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);

final int color = 0xff424242;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
final float roundPx = 12;

paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);
return output;
}

圖片縮放、翻轉和旋轉

/**
* 縮放、翻轉和旋轉圖片
* @param bmpOrg
* @param rotate
* @return
*/
private android.graphics.Bitmap gerZoomRotateBitmap(
android.graphics.Bitmap bmpOrg, int rotate) {
// 擷取圖片的原始的大小
int width = bmpOrg.getWidth();
int height = bmpOrg.getHeight();

int newWidth = 300;
int newheight = 300;
// 定義縮放的高和寬的比例
float sw = ((float) newWidth) / width;
float sh = ((float) newheight) / height;
// 建立操作圖片的用的Matrix對象
android.graphics.Matrix matrix = new android.graphics.Matrix();
// 縮放翻轉圖片的動作
// sw sh的絕對值為綻放寬高的比例,sw為負數表示X方向翻轉,sh為負數表示Y方向翻轉
matrix.postScale(sw, sh);
// 旋轉30*
matrix.postRotate(rotate);
//建立一個新的圖片
android.graphics.Bitmap resizeBitmap = android.graphics.Bitmap
.createBitmap(bmpOrg, 0, 0, width, height, matrix, true);
return resizeBitmap;
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.