Contents

조회 수 60786 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
241 Develop [web] 웹 연동 프로그램 모음.. file hooni 2013.04.23 6978
240 Develop [c] 웅지학원 NAT를 소스코드로.. file hooni 2013.04.23 6620
239 Develop [c] 소켓 스트림 서버/클라이언트 (UDP) file hooni 2013.04.23 7608
238 Develop [c++] 마방진 소스코드 file hooni 2013.04.23 9566
237 Develop [c] 민수형 소스(도메인소켓포함) file hooni 2013.04.23 6537
236 Develop [c] GD라이브러리(jpeg)를 사용한 웹 카운터 샘플 hooni 2013.04.23 15124
235 Develop JSON, BSON 변환 file hooni 2013.04.23 11859
234 Develop [js] 2차 잉여.. (Quadratic reciprocity) 계산.. file hooni 2013.04.23 7085
233 Develop [js] 네이버, 다음의 플레이어 스킨 file hooni 2013.04.23 6959
232 Develop [js] 윈도우 시작버튼처럼 나오는 메뉴 file hooni 2013.04.23 6756
231 Develop [c] 맵서치인 듯(옛날 컴에서 찾은 자료) file hooni 2013.04.23 6912
230 Develop [switch] 시스코 스위치(catalyst 2950) telnet 설정 hooni 2013.04.23 11291
Board Pagination Prev 1 ... 46 47 48 49 50 51 52 53 54 55 ... 71 Next
/ 71