capturePicture() 将结果位图放入内存不足

发布于 2024-12-11 04:20:42 字数 251 浏览 0 评论 0原文

我是 Android/Java 编程新手,并尝试从 webview.capturePicture() 获取位图。但是,在网页很长的情况下,图片的高度太大,并且 createBitmap() 会返回内存不足。我的问题是:

  1. 有没有办法在 sub 中提取图片,以便 createBitmap() 不需要大量内存?
  2. 除了 capturePicture() 之外,还有其他方法获取 Web 视图图像吗?

任何帮助表示赞赏。

I'm new to Android/Java programming and trying to get a bitmap from webview.capturePicture(). However, in cases where the web page is long, the Picture's height is too big and createBitmap() is returning out of memory. My questions are:

  1. Is there a way to extract the Picture in sub so createBitmap() does not need a lot of memory?
  2. Is there another way to get the web view image other than capturePicture()?

Any help is appreciated.

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

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

发布评论

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

评论(1

堇色安年 2024-12-18 04:20:42
View view = getWindow().getDecorView();
Display display = this.getWindowManager().getDefaultDisplay();
view.layout(0, 0, display.getWidth(), display.getHeight());
view.setDrawingCacheEnabled(true);
Bitmap bmp = Bitmap.createBitmap(view.getDrawingCache());

这样就可以得到一个Bitmap。

View view = getWindow().getDecorView();
Display display = this.getWindowManager().getDefaultDisplay();
view.layout(0, 0, display.getWidth(), display.getHeight());
view.setDrawingCacheEnabled(true);
Bitmap bmp = Bitmap.createBitmap(view.getDrawingCache());

in this way you can get a Bitmap.

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