是否有任何库可以在图像的不同位置轻松编写文本而无需执行大量数学运算?我需要在左上角写下照片上的坐标。我现在看到的唯一方法是使用画布,但它需要计算坐标、字体大小和其他东西。谢谢。
尝试关注
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);
这将帮助你