如何使用画布放大和缩小图像。
class DrawOval extends View {
private Bitmap leftimage = BitmapFactory.decodeResource(getResources(),R.drawable.box);
private Bitmap left = Bitmap.createScaledBitmap(leftimage, w1, h1, true);
public DrawOval(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
protected synchronized void onDraw(Canvas canvas) {
}
}
我使用Bitmap绘制图像。我想放大和缩小图像。如果有人知道告诉我这样做的想法。