2014-02-22 291 views
0

我想將canvas保存在bitmap中,因此我可以在其他畫布上繪製該位圖。 問題是我不知道如何設置位圖大小是整個畫布(不是整個畫面,我的佈局的大小)將畫布繪製成位圖

我該如何設置bitmap大小?然後如何保存我的canvas呢?

感謝您的幫助:d

回答

0

我使用這個程序,你可以設置你的觀點,而不是bitmap.getWidth()和bitmap.getHeight(寬度和高度)爲在這裏我重寫一個位圖

 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 = pixels; 

     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); 

希望這會有所幫助:)