2011-08-03 90 views
1

我是android新手,正在開發相機應用程序。在這個應用程序中,我在資產文件夾中有一個透明圖像(圖像框),並且我想將該文件顯示爲我的相機視圖,而不像本機相機視圖。我使用Imageview在表面上獲取帶有ImageFrame的相機視圖屏幕,但無法將它們合併爲SD卡上的輸出圖像文件。請幫助如何爲相機視圖繪製圖像幀並在拍攝的圖像上重疊圖像幀

在此先感謝...

回答

3
  Drawable drbl=null; 
      Bitmap topImage = null ; 
      Bitmap b=Bitmap.createBitmap(ref_capturedBitmap.getWidth(), ref_capturedBitmap.getHeight(), ref_capturedBitmap.getConfig()); 
      Canvas comboImage = new Canvas(b); 


      int width = ref_capturedBitmap.getWidth(); 
      int height = ref_capturedBitmap.getHeight(); 

      Log.v("CameraCaptureActivity","Width : "+width+" Height : "+height); 
      if (frameStatus == 0) 
       drbl = getResources().getDrawable(R.drawable.maske1r); 
      else if (frameStatus == 1) 
       drbl = getResources().getDrawable(R.drawable.maske2r); 
      else if (frameStatus == 2) 
       drbl = getResources().getDrawable(R.drawable.maske3r); 

      drbl.setBounds(0, 0, height, width); 
      Bitmap tpImg=((BitmapDrawable)drbl).getBitmap(); 
      topImage=Bitmap.createScaledBitmap(tpImg, width, height, true); 

      comboImage.drawBitmap(ref_capturedBitmap,0f,0f,null); 
      comboImage.drawBitmap(topImage, 0f, 0f, null); 
          return b; 
+1

朋友你好,這麼多的谷歌搜索和代碼審查後,我發現我的問題上面的最佳解決方案。 –