연결하기1 [안드로이드] 두개의 이미지 연결하기(합치기) 두개의 drawable 이미지를 bitmap으로 전환하고 두 bitmap을 연결하는 코드 예를들어 다음과 같은 작업을 한다. { Bitmap bitmap1 = BitmapFactory.decodeResource(getResources(), R.drawable.basic_right_eye); // first image Bitmap bitmap2 = BitmapFactory.decodeResource(getResources(), R.drawable.basic_right_eye); // second image Bitmap[] listBmp= {bitmap1, bitmap2}; Bitmap mergedImg= mergeMultiple(listBmp); } private Bitmap mergeMultiple(Bi.. 2018. 8. 22. 이전 1 다음