#ios #objective-c #uiimage #cgcontextdrawimage
#iOS #objective-c #uiimage #cgcontextdrawimage cgcontextdrawimage
Вопрос:
Помогите, я новичок в программировании на ios, я хочу повернуть, возможно, UIImage, но я не хочу, чтобы края были обрезаны или потеряли какую-то часть изображения.
это мой код:
double angle = M_PI * 10/ 180; CGSize s = {image.size.width, image.size.height}; UIGraphicsBeginImageContext(s); CGContextRef ctx = UIGraphicsGetCurrentContext();
CGAffineTransform transform = CGAffineTransformIdentity;
transform = CGAffineTransformTranslate(transform, image.size.width/2, image.size.height/2);
transform = CGAffineTransformRotate(transform, angle);
transform = CGAffineTransformScale(transform, 1.0, -1.0);
CGContextConcatCTM(ctx, transform);
CGContextDrawImage(ctx,CGRectMake(-[image size].width/2,-[image size].height/2,image.size.width, image.size.height),image.CGImage);
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(newImage, nil, nil, nil);
Изображение вращается, но размер кадра не меняется из-за того, что часть изображения была вырезана.
ОЖИДАЕМЫЙ РЕЗУЛЬТАТ: https://fbcdn-photos-g-a.akamaihd.net/hphotos-ak-xfa1/t1.0-0/10314770_761675840521898_6536715783383115855_a.jpg
Пожалуйста, помогите мне поблагодарить вас.
Комментарии:
1. Можете ли вы показать изображение того, чего вы хотите и что вы получаете? Это трудно оценить из кода.
2. извините, не могу опубликовать изображение прямо сейчас, это ссылка, ВЫВОД: scontent-a-lax.xx.fbcdn.net/hphotos-xap1/t1.0-9/… ОЖИДАЕМЫЙ РЕЗУЛЬТАТ: fbcdn-photos-g-a.akamaihd.net/hphotos-ak-xfa1/t1.0-0 /…
Ответ №1:
Это может быть то, что вы ищете.
Просто скопируйте следующий код в конец .m
файла (после @end
), в котором вы хотите повернуть изображение.
@interface UIImage (RotationMethods)
- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees;
@end
@implementation UIImage (RotationMethods)
static CGFloat DegreesToRadians(CGFloat degrees) {return degrees * M_PI / 180;};
- (UIImage *)imageRotatedByDegrees:(CGFloat)degrees
{
// calculate the size of the rotated view's containing box for our drawing space
UIView *rotatedViewBox = [[UIView alloc] initWithFrame:CGRectMake(0,0,self.size.width, self.size.height)];
CGAffineTransform t = CGAffineTransformMakeRotation(DegreesToRadians(degrees));
rotatedViewBox.transform = t;
CGSize rotatedSize = rotatedViewBox.frame.size;
// Create the bitmap context
UIGraphicsBeginImageContext(rotatedSize);
CGContextRef bitmap = UIGraphicsGetCurrentContext();
// Move the origin to the middle of the image so we will rotate and scale around the center.
CGContextTranslateCTM(bitmap, rotatedSize.width/2, rotatedSize.height/2);
// // Rotate the image context
CGContextRotateCTM(bitmap, DegreesToRadians(degrees));
// Now, draw the rotated/scaled image into the context
CGContextScaleCTM(bitmap, 1.0, -1.0);
CGContextDrawImage(bitmap, CGRectMake(-self.size.width / 2, -self.size.height / 2, self.size.width, self.size.height), [self CGImage]);
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
Затем поверните изображение, как в примере ниже:
CGFloat degrees = 90;
yourImage = [yourImage imageRotatedByDegrees:degrees];