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

时间:2015-04-29 06:10:04

标签: android bitmap android-bitmap android-runtime

我想创建一个包含一些字符串数据的Bitmap,然后将其发送到我的移动打印机。

我们怎么能这样做?

1 个答案:

答案 0 :(得分:2)

尝试这样:

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