Notice
Recent Posts
Recent Comments
올해는 머신러닝이다.
[안드로이드]이미지 합성하는 방법 본문
private Bitmap overlayMark(Bitmap bmp1, Bitmap bmp2,int distanceLeft,int distanceTop) {
Bitmap bmOverlay = Bitmap.createBitmap(bmp1.getWidth()+distanceLeft,
bmp1.getHeight()+distanceLeft, bmp1.getConfig());
Canvas canvas = new Canvas(bmOverlay);
canvas.drawBitmap(bmp1, distanceLeft, distanceTop, null);
canvas.drawBitmap(bmp2, 0, 0, null);
return bmOverlay;
'Android > Tip&Tech' 카테고리의 다른 글
[펌][Java/Android] 원격지 이미지 다운로드 (Remote Image Downloader) (0) | 2011.08.11 |
---|---|
[Android] 물에 반사된 듯한 이미지 효과 만들기. (0) | 2011.08.10 |
[안드로이드]모바일 웹에서 이미지 업로드 가능(2.2부터) (0) | 2011.08.08 |
[펌]android listview dynamic add footer (0) | 2011.08.02 |
android image upload with php (0) | 2011.08.02 |