gpt4 book ai didi

android - 如何在kotlin中将imageview转换为bytearray

转载 作者:行者123 更新时间:2023-12-04 23:51:47 27 4
gpt4 key购买 nike

如何将imageview转换为bytearray kotlin android

在java中

Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();
ByteArrayOutputStream stream=new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 90, stream);
byte[] image=stream.toByteArray();

return image

最佳答案

这里是使用 java 到 kotlin 的转换器。

val bitmap = (image.getDrawable() as BitmapDrawable).getBitmap()
val stream = ByteArrayOutputStream()
bitmap.compress(Bitmap.CompressFormat.PNG, 90, stream)
val image = stream.toByteArray()

关于android - 如何在kotlin中将imageview转换为bytearray,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46666308/

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