티스토리 뷰
public Bitmap rotateImage(Bitmap src, float degree) {
// Matrix 객체 생성
Matrix matrix = new Matrix();
// 회전 각도 셋팅
matrix.postRotate(degree);
// 이미지와 Matrix 를 셋팅해서 Bitmap 객체 생성
return Bitmap.createBitmap(src, 0, 0, src.getWidth(),src.getHeight(), matrix, true);
}
'개발 > 개발 자료' 카테고리의 다른 글
[입사 개발과제] Node.js를 이용한 지뢰찾기 개발하기 (0) | 2018.06.01 |
---|---|
(HTML) li 끼리 간격이 생길 때 해결방법 (0) | 2018.05.24 |
(MySQL) 현재 상태 확인하는 명령어 (현재 connection개수 확인 등) (0) | 2017.08.09 |
(Object-C) App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file. (0) | 2017.04.04 |
(Obejct-C) 생명주기에 따른 실행 함수 (0) | 2017.04.04 |
댓글