从android中的textview获取位图

发布于 2024-09-05 16:20:11 字数 169 浏览 3 评论 0原文

我想获取显示文本视图时绘制的位图,但不在活动中显示文本视图。像这样的事情:

TextView t = new TextView(this);
t.forceToDrawItself();
Bitmap b=t.getViewBitmap();

这怎么可能?

I want to get the bitmap that is drawn when a textview is displayed but without displaying the textview in the activity. something like this:

TextView t = new TextView(this);
t.forceToDrawItself();
Bitmap b=t.getViewBitmap();

how is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初心未许 2024-09-12 16:20:11

View#draw(Canvas) 会将整个视图绘制到给定的 Canvas 中。您可以使用构造函数 Canvas (位图) 创建一个绘制给定位图的画布。

使用 Bitmap#createBitmap(int, int, Bitmap.Config),将其包装在画布中,并将其传递给视图的draw 方法。

View#draw(Canvas) will draw the entire view into the given Canvas. You can use the constructor Canvas(Bitmap) to create a Canvas that draws into the given Bitmap.

Create a bitmap of the desired size with Bitmap#createBitmap(int, int, Bitmap.Config), wrap it in a canvas, and pass it to your view's draw method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文