반응형

전체 글 250

[Bitmap] Uri 에서 Bitmap을 얻는 방법

uri를 얻어온 후, Bitmap으로 바꾸는 방법입니다! (ex. 갤러리를 통해 사진을 가져올 때) Android P 이상부터 ImageDecoder를 사용해서 가져올 수 있습니다. +) MediaStore.Images.Media.getBitmap(ContentResolver cr, Uri url) 은 API29에서 @deprecated 되었다고 합니다. ImageDecoder가 성능이 좋다나 ..? Bitmap bitmap = null; try { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) { bitmap = ImageDecoder.decodeBitmap(ImageDecoder.createSource(getContentResolver(), imageUr..

Platform/Android 2020.07.07

[Image] 갤러리에서 인텐트로 받은 이미지 경로를 바꿔줌

https://nittaku.tistory.com/24 갤러리에서 인텐트로 받은 이미지 경로를 원하는 대로 바꿔주는 매쏘드 정확히는, 갤러리 intent로 띄움 -> onActivityResult()의 intent data로 넘어온 경로를 getData()해도, 정상경로가 아님 -> getPath();안에 data.getData()를 집어 넣어서 File객체에 집어 넣을 수 있는 이미지.. nittaku.tistory.com https://c10106.tistory.com/5163 미디어 저장소에서 URI의 파일 이름 및 경로 가져 오기 미디어 저장소에서 URI의 파일 이름 및 경로 가져 오기 나는 한 onActivityResult 나는 다음을 사용하여 이미지의 URI를 얻을 수있는 미디어 스토어 Med..

Platform/Android 2020.07.06
반응형