반응형
- (UIImage*)imageByCropping:(UIImage *)imageToCrop toRect:(CGRect)rect
{
CGImageRef imageRef = CGImageCreateWithImageInRect([imageToCrop CGImage], rect);
UIImage *cropped = [UIImage imageWithCGImage:imageRef];
CGImageRelease(imageRef);
return cropped;
}
반응형
'iOS' 카테고리의 다른 글
NSMutableDictionary를 json으로 변환 (0) | 2020.05.18 |
---|---|
iOS iP주소 가져오기 (0) | 2019.05.30 |
UIImage에 여백 마진 넣기 (0) | 2019.05.30 |
NSDictionary 또는 NSArray에서 JSON 문자열을 생성 하기 (0) | 2019.05.30 |
NSArray 의 빈값 체크 (0) | 2019.05.30 |