0

我是 Android 新手,我想在画布或位图上进行缩小和放大。我制作了绘图应用程序,然后我想缩小和放大我绘制的图片。任何人都可以建议我吗?

我想放大:

private Bitmap mBitmap;
private Canvas mCanvas;

如何制作“图层绘图”?

4

1 回答 1

0

使用画布 API

scale(float sx, float sy)
    Preconcat the current matrix with the specified scale.

drawBitmap(int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, Paint paint)
    Treat the specified array of colors as a bitmap, and draw it.
于 2012-09-19T09:02:41.723 回答