Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Bitmap 对象,我想用一些矩阵变换在画布上绘制。我正在使用
canvas.drawBitmap(myBitmap, myMatrix, null);
这样的绘图效果会反对 myBitmap 吗?也就是说,在这之后绘制(变换绘制)myBitmap,没有myMatrix,会不会不做任何变换绘制呢?还是会有以前的转变?
只有通过将位图提供给画布的 CTOR 才能在位图上绘图。
drawBitmap不会更改参数中给出的位图。