gpt4 book ai didi

java - 如何停止或暂停 Canvas 上的绘图

转载 作者:行者123 更新时间:2023-12-02 13:30:37 24 4
gpt4 key购买 nike

我正在制作面部编辑应用程序。我想徒手在脸上画一幅画。我希望能够停止并暂停 Canvas 上的绘图。这是我的代码:

protected void onDraw(Canvas canvas) {
super.onDraw(canvas);

canvas.drawBitmap(testbmp, 0, 0, mBitmapPaint);
canvas.drawPath(mPath, mPaint);
canvas.drawPath(circlePath, circlePaint);
}

private float mX, mY;
private static final float TOUCH_TOLERANCE = 4;

private void touch_start(float x, float y) {
mPath.reset();
mPath.moveTo(x, y);
mX = x;
mY = y;
}

private void touch_move(float x, float y) {
float dx = Math.abs(x - mX);
float dy = Math.abs(y - mY);
if (dx >= TOUCH_TOLERANCE || dy >= TOUCH_TOLERANCE) {
mPath.quadTo(mX, mY, (x + mX) / 2, (y + mY) / 2);
mX = x;
mY = y;

circlePath.reset();
circlePath.addCircle(mX, mY, 30, Path.Direction.CW);
}
}

private void touch_up() {
mPath.lineTo(mX, mY);
circlePath.reset();
// commit the path to our offscreen
mCanvas.drawPath(mPath, mPaint);
// kill this so we don't double draw
mPath.reset();
}

@Override
public boolean onTouchEvent(MotionEvent event) {
float x = event.getX();
float y = event.getY();

switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
touch_start(x, y);
invalidate();
break;
case MotionEvent.ACTION_MOVE:
touch_move(x, y);
invalidate();
break;
case MotionEvent.ACTION_UP:
touch_up();
invalidate();
break;
}
return true;
}

public void onClickEraser() {
boolean isEraserOn = true;
if (isEraserOn)
mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR));
else
mPaint.setXfermode(null);
}

最佳答案

您可以停止onDraw执行。将执行其中的所有方法。您的应用程序或 View 可以实现某种机制来管理绘图队列,并且 onDraw 方法将从头开始绘制到您决定的位置,但这不是该方法的自然工作方式。

关于java - 如何停止或暂停 Canvas 上的绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43205766/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com