[iOS] 이미지 리사이즈 (Image Resize)
iOS2011. 7. 1. 10:08
UIImage* ImageResize(UIImage* image, CGSize size)
{
UIGraphicsBeginImageContext(size);
[image drawInRect:CGRectMake(0, 0, size.width, size.height)];
UIImage*scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return scaledImage;
}
'iOS' 카테고리의 다른 글
[iOS] 문자열 중에서 숫자만 얻어내기 (1) | 2011.07.05 |
---|---|
[iOS] 초성검색을 위한 한글 초성, 중성, 종성 분리하기 (0) | 2011.07.05 |
[iOS] 문자열 해쉬값 구하기 (NSString MD5) (0) | 2011.07.05 |
[iOS] 이미지 뒤집기(Flip) (0) | 2011.07.01 |
[iOS] 이미지에 마스크(Mask) 적용 (0) | 2011.07.01 |
[iOS] UIImagePickerController로 Photo Library에서 사진 선택하기 (0) | 2011.07.01 |
[iOS] 이미지 합치기(Image Merge) (0) | 2011.07.01 |
[iOS] NSString Encoding (0) | 2011.07.01 |
[iOS] NSString(문자열) 클래스 이름으로 부터 해당 클래스 객체 생성하기 (0) | 2011.03.09 |
[iOS] 로그(NSLog) 기록 (0) | 2011.01.17 |