0

我有一个ImageView包含两个位图一个背景和一个在前景上绘制的图案。我想要做的是擦除前景上绘制的图案,以便在擦除的部分上显示完整的背景。我已经弄清楚了擦除部分,这很有效。

我的问题是当我擦除触摸位置时不准确。这是因为Bitmap前景画布上的 与 的画布大小不同ImageView。我ImageViewonMeasure方法中调整我的大小以适应屏幕而不缩小它。

我该如何解决这个问题?我考虑过使用两个图像视图,每个位图一个,但是这个过程很繁琐,而且还会导致性能问题。我想使用一个ImageView和两个位图。

这是我的代码,可以进一步解释我的问题。

      final Paint pTouch = new Paint(Paint.ANTI_ALIAS_FLAG);         
      pTouch.setXfermode(new PorterDuffXfermode(Mode.SRC_OUT)); 
      pTouch.setColor(Color.TRANSPARENT);
      pTouch.setMaskFilter(new BlurMaskFilter(10, Blur.NORMAL));

      final Canvas c2 = new Canvas(_currentTextureBitmap);

      ImageView iv = new ImageView(this) {
            int x = 0;
            int y = 0;
            int _width;
            int _height;

            @Override
            public boolean onTouchEvent(MotionEvent ev) {

                switch (ev.getAction()) {

                case MotionEvent.ACTION_DOWN: { 

                    x = (int) ev.getX();
                    y = (int) ev.getY();

                    invalidate();

                    break;
                }

                case MotionEvent.ACTION_MOVE: {

                    x = (int) ev.getX();
                    y = (int) ev.getY();

                    invalidate();
                    break;

                }    

                }
                return true;
            }

            @Override 
            protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
                Drawable d = getDrawable();

                if(d!=null){
                    // ceil not round - avoid thin vertical gaps along the left/right edges
                    _width = MeasureSpec.getSize(widthMeasureSpec);
                    _height = (int) Math.ceil((float) _width * (float) d.getIntrinsicHeight() / (float) d.getIntrinsicWidth());
                    setMeasuredDimension(_width, _height);
                }else{
                    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
                }
            }

            @Override
            public void onDraw(Canvas canvas){
                super.onDraw(canvas);

                if (_selectedImageURI != null)
                    if (_erase) {
                        //draw background
                        canvas.drawBitmap(_backgroundBitmap, null, new RectF(0, 0, _width, _height), null);

                        if (_currentTextureBitmap != null) {
                            c2.drawCircle(x, y, 40, pTouch);
                            canvas.drawBitmap(_currentTextureBitmap, null, new RectF(0, 0, _width, _height), null);
                        }
                    }
               }
        };
4

1 回答 1

0

找到了一个非常简单的解决方案。只需使用最大画布的宽度,将其除以较小的画布,使用该浮点值并将其与触摸时设置的 x 和 y 值相乘。这给出了在更大的画布上擦除的正确坐标。

@Override
public void onDraw(Canvas canvas){
    super.onDraw(canvas);

    if (_erase) {
        //draw background
        canvas.drawBitmap(_originalBitmap, null, new RectF(0, 0, _width, _height), null);

        if (_overlay != null) { 
            float x = (_x * ((float)_overlay.getWidth()/_width));
            float y = (_y * ((float)_overlay.getHeight()/_height));

            _canvasOverlay.drawCircle(x, y, 40, _touch);
            canvas.drawBitmap(_overlay, null, new RectF(0, 0, _width, _height), null);
        }
    }
}
于 2013-03-05T08:47:47.330 回答