Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- javascript
- 자바
- 안드로이드
- jsp
- STS
- Apache Lucene
- 자바스크립트
- MANTIS
- Web Service
- Java
- MSsql
- MS-SQL
- html
- WebView
- 웹뷰
- 웹 서비스
- decompiler
- Bootstrap
- 이클립스
- 컬럼명
- C#
- Redirect
- Android
- varags
- Maven
- Eclipse
- SpringSource Tool Suite
- scrollView
- TextBox
- asp.net
Archives
- Today
- Total
목록Flip (1)
bboks.net™
이미지 flip 시키기
1. 플립 메소드public static final int FLIP_VERTICAL = 1; public static final int FLIP_HORIZONTAL = 2; private Bitmap flipImage(Bitmap src, int type) { // create new matrix for transformation Matrix matrix = new Matrix(); // if vertical if (type == FLIP_VERTICAL) { // y = y * -1 matrix.preScale(1.0f, -1.0f); } // if horizonal else if (type == FLIP_HORIZONTAL) { // x = x * -1 matrix.preScale(-1.0f, 1.0..
Mobile Programming/Android
2014. 8. 12. 17:25