Contents

조회 수 60746 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
373 Develop [c] 하노이탑 - 재귀함수 hooni 2003.04.23 9155
372 Develop [c] 플러드 필링 (flood filling) 알고리즘.. file hooni 2013.04.23 7319
371 Develop [c] 프로세스간의 통신(파이프) hooni 2003.04.23 6891
370 Develop [c] 프로세스 정보 출력하기.. file hooni 2003.04.23 6908
369 Develop [c] 프로세스 검사하기 hooni 2013.04.23 8028
368 Develop [c] 프로그램 코드(c/c++)를 html 파일로 변환 file hooni 2013.04.23 7679
367 Develop [c] 프로그래밍의 전반적인 설명 ppt file hooni 2003.04.23 7675
366 Develop [c] 프로그래밍 과제..(colprint) file hooni 2003.04.23 6745
365 Develop [c] 프로그래밍 ppt, 스킬업 (비트 수업자료) file hooni 2003.04.23 8177
364 Develop [c] 포인터와 함수포인터에 대해.. hooni 2003.04.23 8019
363 Develop [c] 포인터 학습용 예제 소스 코드 file hooni 2013.04.23 21034
362 Develop [c] 팩토리얼.. - 재귀함수 hooni 2003.04.23 9501
Board Pagination Prev 1 ... 35 36 37 38 39 40 41 42 43 44 ... 71 Next
/ 71