Contents

조회 수 64147 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

캔버스를 이용해 이미지 확대/축소하는 코드

import android.app.Activity;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Rect;
import android.os.Bundle;
import android.view.View;
import android.view.Window;

public class CanvasView extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(new ImageView(this));
    }
    
    public class ImageView extends View{
        
        private Bitmap image; // 이미지
        
        public ImageView(Context context) {
            super(context);
            setBackgroundColor(Color.WHITE);
            // 그림 읽어들이기 
            Resources r = context.getResources();
            image = BitmapFactory.decodeResource(r, R.drawable.excavator);
        }

        @Override
        protected void onDraw(Canvas canvas) {
            // 원본이미지
            canvas.drawBitmap(image, 0, 0, null);
            
            // 원본이미지 영역을 축소해서 그리기 
            int w = image.getWidth();
            int h = image.getHeight();
            Rect src = new Rect(0, 0, w, h);
            Rect dst = new Rect(0, 200, w / 2, 200 + h / 2);
            canvas.drawBitmap(image, src, dst, null);
            super.onDraw(canvas);
        }
    }
}

TAG •

?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
313 Database [mysql] error while loading shared libraries: libmysqlclient.so.10: hooni 2003.04.23 15292
312 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 15437
311 PPT [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ file hooni 2013.04.23 15442
310 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 15448
309 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 15544
308 System/OS [linux] 랜카드 2개 설정 & iptables 로 사설 ip.. hooni 2003.04.23 15595
307 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 15618
306 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 15742
305 System/OS [sql] 중복데이터 삭제 쿼리 hooni 2013.04.23 15767
304 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 15815
303 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 15830
302 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 15831
Board Pagination Prev 1 ... 68 69 70 71 72 73 74 75 76 77 ... 99 Next
/ 99