如何在kotlin中将imageview转换为bytearray [英] How to convert imageview to bytearray in kotlin

查看:151
本文介绍了如何在kotlin中将imageview转换为bytearray的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将imageview转换为bytearray kotlin android

How to convert imageview to 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的转换器.

Here it is use java to kotlin converter.

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

这篇关于如何在kotlin中将imageview转换为bytearray的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆