gpt4 book ai didi

android-studio - 有没有办法从 Android Studio (Intellij) 中的调试控制台保存位图

转载 作者:行者123 更新时间:2023-12-03 15:03:27 25 4
gpt4 key购买 nike

在 android studio 中,您可以通过单击变量旁边的(查看位图)从调试控制台查看位图。我想知道是否有办法将这些保存到您正在使用的计算机上?
Bitmap I'm trying to save

最佳答案

当执行在断点处停止时,有可能评估代码,这允许将代码粘贴到那里,然后可以通过给定的 Bitmap 执行导出处理...假设事件应用程序已被授予写入外部存储的权限。

这将是要粘贴和评估的代码,其中 bitmap是要导出的句柄:

try {
FileOutputStream output = new FileOutputStream(new File(Environment.getExternalStorageDirectory().toString(), "test.jpg"));
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, output);
output.flush();
output.close();
} catch (Exception e) {
e.printStackTrace();
}

这就是它应该看起来的样子:

evaluate code

然后可以使用“设备文件资源管理器”从 /mnt/sdcard 下载导出的图像。 .

关于android-studio - 有没有办法从 Android Studio (Intellij) 中的调试控制台保存位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37284674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com