조회 수 60797 추천 수 0 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
13 Develop [android] Calling activity function from separate class hooni 2016.11.15 1314
12 Develop [android] How can I place app icon on launcher home screen? hooni 2016.11.15 1414
11 Develop [ios] FlckrFeed Example App (Swift) file hooni 2016.11.27 1208
10 Develop XML, JSON, BSON, MSGPACK 장,단점 비교 file hooni 2017.01.11 2382
9 Develop [ios] 동영상 플레이어 샘플 (for Local File) file hooni 2017.02.07 1208
8 Develop [ios] 동영상 플레이어 샘플 (for Remote Url) file hooni 2017.02.07 1765
7 Develop [ios] Facebook Cache 갱신하는 함수 file hooni 2017.02.27 1328
6 Develop [ios] 동영상 플레이어 샘플 (for PIP Player) file hooni 2017.03.15 1406
5 Develop Mac OS 에 Jenkins 설치하기 (Homebrew) 2 file hooni 2017.03.15 8406
4 Develop [ios] Xcode에서 특정 파일만 ARC 따로 설정하는 방법 file hooni 2017.03.29 1085
3 Develop [ios] NSString, RegularExpression Find/Replace hooni 2017.04.14 959
2 Develop [ios] Facebook SDK 로그인 설명 file hooni 2017.04.19 1359
1 Develop [ios] Requesting Location Permissions in iOS file hooni 2018.08.18 1739
Board Pagination Prev 1 2 3 4 Next
/ 4