UIImage 의 일부 영역을 CGImage 로 변환 후 UIImage 로 변환
CGImageRef imageRef = CGImageCreateWithImageInRect([image CGImage], CGRectMake(0, 0, iWidth, iHeight));
UIImage *image = [[UIImage imageWithCGImage:imageRef] autorelease];
CGImageRelease(imageRef);
'Mobile > iOS' 카테고리의 다른 글
[Simulator] 단축키 (0) | 2012.05.02 |
---|---|
[AudioFileServices] Result Codes (0) | 2012.04.05 |
[iOS] NSTimer 사용 (0) | 2012.03.13 |
[iOS] NSMutableDictionary 상속, "method only defined for abstract class" (0) | 2012.03.02 |
[Simul] 시뮬레이터에서 멀티터치 테스트 (0) | 2012.02.28 |