반응형 bitmap2 [Android] Bitmap Compress (압축) Bitmap Compress 압축하기 아래 메소드를 사용하면 됩니다. private Bitmap compressBitmap(Bitmap bitmap){ ByteArrayOutputStream stream = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG,40, stream); byte[] byteArray = stream.toByteArray(); Bitmap compressedBitmap = BitmapFactory.decodeByteArray(byteArray,0,byteArray.length); return compressedBitmap; } compress() 의 두번째 파라메터로 40 을 넘기고있는데 이건 40%로.. 2019. 9. 6. [Android] Drawable, ImageView 에서 Bitmap 가져오기 Get Bitmap from Drawable Get Bitmap from ImageView res/drawable 에 있는 이미지를 bitmap으로 가져오기 Bitmap icon = BitmapFactory.decodeResource(context.getResources(), R.drawable.icon_resource); ImageView 의 resource를 bitmap 으로 가져오기 BitmapDrawable drawable = (BitmapDrawable) imageView.getDrawable(); Bitmap bitmap = drawable.getBitmap(); (추가) 위의 imageView 는 ImageView 객체입니다. Layout 에서 2019. 9. 6. 이전 1 다음 728x90 반응형