Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android-合並兩張圖片bitmap

android-合並兩張圖片bitmap

編輯:關於Android編程

Bitmap bitmap1;
Bitmap bitmap2;
Bitmap bitmap3 = Bitmap.createBitmap(bitmap1.getWidth(), bitmap1.getHeight(), bitmap1.getConfig());
Canvas canvas = new Canvas(bitmap3);
canvas.drawBitmap(bitmap1, new Matrix(), null);
canvas.drawBitmap(bitmap2, 120, 350, null);  //120、350為bitmap2寫入點的x、y坐標
//將合並後的bitmap3保存為png圖片到本地
FileOutputStream out = new FileOutputStream(path+File.separator+"image3.png");
bitmap3.compress(Bitmap.CompressFormat.PNG, 90, out);


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