코틀린으로 Asset에 있는 이미지 Bitmap으로 읽는 법
asset 폴더에 있는 00004_kf94.jpg 이미지를 읽어서 Bitmap으로 가져오는 코드는 다음과 같다.
// asset 폴더에서 이미지 읽어오기
val assetManager = resources.assets
val inputStream = assetManager.open("00004_kf94.jpg")
var bitmap = BitmapFactory.decodeStream(inputStream)
'안드로이드' 카테고리의 다른 글
[코틀린] Kotlin의 정수, 실수 자료형, 자료형 추론법 (0) | 2023.03.20 |
---|---|
[안드로이드/코틀린] Bitmap 이미지 저장하기 (0) | 2023.03.15 |
[안드로이드/TFLite] TF Lite delegate (0) | 2023.03.09 |
[Tensorflow/TFLite] Tensorflow 모델을 Tensorflow Lite로 바꾸는 법, tf2tflite (0) | 2023.02.28 |
[안드로이드/TF Lite] input/output shape 확인 법 (0) | 2023.02.28 |