0

我目前正在做这种类型的项目。我的要求是如何找到在画布上书写文本时使用的总 x,y 位置。

例如 :

显示在图像中,显示在字母上,我想找到用于制作 A 的总 x,y 点。

在此处输入图像描述

4

2 回答 2

2

我不知道你为什么需要这样做,但这里有一些粗鲁的解决方案:

Map<Integer, Integer> result = new HashMap<Integer, Integer>();
for (int x = 0; x < bitmap.getWidth(); x++) {
    for (int y = 0; y < bitmap.getHeight(); y++) {
        int color = bitmap.getPixel(x, y);
        if (color != BACKGROUND_COLOR) {
            result.put(x, y);
        }
    }
}

您只需遍历您的位图并将每个像素的颜色与背景颜色进行比较。如果不同,则将当前像素添加到结果图中。

如果您不知道如何从中检索,请参阅此帖子BitmapCanvas

于 2012-12-03T09:53:38.523 回答
0

创建自定义类

public class CustomCanvas extends Canvas {

    private Rect rect;


    @Override
    public void drawPicture(Picture picture, Rect dst) {
        rect =dst;      
        super.drawPicture(picture, dst);
    }

    public Rect getRect() {
        return rect;
    }


}

调用 CustomCanvas 矩形

@Override
    public boolean onTouchEvent(MotionEvent event) {
        canvas.getRect().intersect((int)event.getX(),(int)event.getY(),0,0);
        return super.onTouchEvent(event);
    }
于 2012-12-03T09:46:45.233 回答