Android: 我们可以在应用程序运行时创建带有字符串的位图吗?

Android: Can we create bitmaps with Strings on it on the application runtime?

我想创建一个带有一些字符串数据的位图,然后将其发送到我的移动打印机。

我们该怎么做?

这样试试:

Bitmap resultBitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(resultBitmap);
Paint paint = new Paint();
paint.setColor(Color.RED);
canvas.drawText("", 10, 10, paint);
//here you can return that bitmap directly