canvas에 그림 그려서 imageview에 붙이기Android/개념 및 예제2013. 7. 24. 18:16
Table of Contents
반응형
출처: http://joerg-richter.fuyosoft.com/?p=120
Bitmap bitmap2 = BitmapFactory.decodeResource(getResources(), R.drawable.close); ⁄⁄Create a new image bitmap and attach a brand new canvas to it Bitmap tempBitmap = Bitmap.createBitmap(bitmap2.getWidth(), bitmap2.getHeight(), Bitmap.Config.RGB_565); Canvas canvas = new Canvas(tempBitmap); ⁄⁄Draw the image bitmap into the cavas canvas.drawBitmap(bitmap2, 0, 0, null); ⁄⁄Draw everything else you want into the canvas, in this example a rectangle with rounded edges Paint paint = new Paint(); paint.setTextSize(100); paint.setColor(0xFFFF0000); canvas.drawText("hhhhhhhhhhhhhhhhhhi", 300, 300, paint); ⁄⁄Attach the canvas to the ImageView image.setImageDrawable(new BitmapDrawable(getResources(), tempBitmap));
반응형
'Android > 개념 및 예제' 카테고리의 다른 글
안드로이드 백그라운드 서비스 예제 - IntentService (0) | 2015.02.21 |
---|---|
Android WebView 예제 (0) | 2014.07.09 |
android.os.NetworkOnMainThreadException (0) | 2014.06.29 |
안드로이드의 View에 이미지 혹은 단색 배경 지정하기 (0) | 2014.05.27 |
android에서 ip camera 영상 띄우기 - Bitmap으로 변환 후 ImageView에 출력 (4) | 2013.07.23 |
시간날때마다 틈틈이 이것저것 해보며 블로그에 글을 남깁니다.
블로그의 문서는 종종 최신 버전으로 업데이트됩니다.
여유 시간이 날때 진행하는 거라 언제 진행될지는 알 수 없습니다.
영화,책, 생각등을 올리는 블로그도 운영하고 있습니다.
https://freewriting2024.tistory.com
제가 쓴 책도 한번 검토해보세요 ^^
@webnautes :: 멈춤보단 천천히라도
그렇게 천천히 걸으면서도 그렇게 빨리 앞으로 나갈 수 있다는 건.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!