인터넷의 이미지를 비트맵 타입으로 변경하고 사이즈 조절하기

반응형

 

URL 이미지 객체화

URL urlImg = new URL("URL주소");

 

URL 이미지를 비트맵 타입으로 변경

Bitmap urlBitMap = BitmapFactory.decodeStream(urlImg.openConnection().getInputStream());

 

비트맵 타입의 이미지 사이즈 변경

  • Bitmap.createScaledBitmap( "resource" , " width", "height" , "filter" )
Bitmap resizeBitmap = Bitmap.createScaledBitmap( "비트맵객체명" ,100, 150, false );

 

응용) URL 이미지를 이미지 변경하여 객체화

URL urlImage = new URL("urlString");
Bitmap posterImg = Bitmap.createScaledBitmap(
		BitmapFactory.decodeStream(urlImage.openConnection().getInputStream() ),
        100, 150, false);
반응형