Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ios
- debuger
- javascript
- android studio
- FLVPlayback
- red5
- SWFObject
- os x
- 가로
- 비트맵리사이즈
- publish setting
- flashplayer
- Lifefilm
- Alpha
- Movieplayer
- FLV Player
- 단말 테스트
- ExteranlInterface
- papervision3d
- Renewal
- cocos2d-x
- fd3
- FlashDevelop
- ubuntu touch
- complie
- TweenMax
- wireless keyboard
- flash
- smoothing
- Demo
Archives
- Today
- Total
ALL ABOUT ME
Flash :: Bitmap Resize 본문
비율로 맞추기 (가로,세로 모두 영역안에)
.Variable
e.currentTarget - 로더
bmp - 비트맵
container - 로드이미지 넣을 컨테이너
.Code
if (e.currentTarget.width >= e.currentTarget.height) {
.Variable
e.currentTarget - 로더
bmp - 비트맵
container - 로드이미지 넣을 컨테이너
.Code
if (e.currentTarget.width >= e.currentTarget.height) {
bmp.width = container.width;
bmp.height = container.width * ( e.currentTarget.height / e.currentTarget.width);
}else {
bmp.height = container.height;
bmp.width = container.height * (e.currentTarget.width / e.currentTarget.height);
bmp.width = container.height * (e.currentTarget.width / e.currentTarget.height);
}
--------------------------------------------------------------------------------------
비율로 맞추기 (가로,세로 한쪽만 영역안에)
.Variable
e.currentTarget - 로더
bmp - 비트맵
container - 로드이미지 넣을 컨테이너
.Code
if (e.currentTarget.width >= e.currentTarget.height) {
--------------------------------------------------------------------------------------
비율로 맞추기 (가로,세로 한쪽만 영역안에)
.Variable
e.currentTarget - 로더
bmp - 비트맵
container - 로드이미지 넣을 컨테이너
.Code
if (e.currentTarget.width >= e.currentTarget.height) {
bmp.height = container.height;
bmp.width = container.height * (e.currentTarget.width / e.currentTarget.height);
bmp.width = container.height * (e.currentTarget.width / e.currentTarget.height);
}else {
}
bmp.width = container.width;
bmp.height = container.width * ( e.currentTarget.height / e.currentTarget.width);
'Lab' 카테고리의 다른 글
Flash :: 올플래시 리사이즈 (0) | 2009.05.06 |
---|---|
Flash :: 가로, 세로 정렬!! (0) | 2009.04.28 |
Flash :: FLVPlayback video smoothing (0) | 2009.04.16 |
Flash :: FlashDevelop !! (0) | 2009.03.02 |
Flash :: LIFE FILM ver 1.1 (0) | 2009.02.10 |
Comments