Paint mPaint = new Paint();
mPaint.setStyle(Style.FILL);
mPaint.setColor(Color.Red);
canvas.drawRect(mRedPaddleRect, mPaint);
在这里,mRedPaddleRect 是一个使用 Rect 形成的 Rectangle,而不是设置它的颜色,我想设置一个图像。
如何才能做到这一点?
任何帮助,将不胜感激。
谢谢你。
我就是这样做的,我不敢相信这很容易
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),R.drawable.racquet);
canvas.drawBitmap(bitmap, null, mRedPaddleRect, mPaint);
希望这也会对其他人有所帮助。
Bitmap workingBitmap = Bitmap.createBitmap(result);
Bitmap mutableBitmap = workingBitmap
.copy(Bitmap.Config.ARGB_8888, true);
Canvas canvas = new Canvas(mutableBitmap);
把你的绘画代码放在这里
Paint paint = new Paint();
paint.setColor(context.getResources().getColor(R.color.text_color)); // Text
paint.setStrokeWidth(12); // Text Size
paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_OVER)); // Text
// Overlapping
// Pattern
// some more settings...
canvas.drawBitmap(mutableBitmap, RECTsrc, RECTdst, paint);
尝试这样的事情希望这会有所帮助