是否有任何库可以轻松地在不同的图像位置写入文本而无需执行大量的数学运算?我需要在左上角写照片上的坐标。我现在看到的唯一方法是使用canvas,但它需要计算坐标,字体大小和其他东西。感谢。
答案 0 :(得分:0)
尝试以下
Bitmap bitmap = ... // Load your bitmap here
Canvas canvas = new Canvas(bitmap);
Paint paint = new Paint();
paint.setColor(Color.BLACK);
paint.setTextSize(10);
canvas.drawText("Some Text here", x, y, paint);
This会帮助您