Поворот изображения в IOS

Я использую Xcode 7.3 и ojective-c одного из моих приложений, когда я конвертирую изображение с камеры в base64, тогда изображение будет повернуто на 90 градусов влево. Я пытаюсь использовать множество методов, чтобы решить эту проблему, но ничего не получилось.

Ниже приведен код:

NSString *data64URLString = [NSString stringWithFormat:@"data:image/png;base64,%@", [UIImageJPEGRepresentation(image, 0) base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength]];

Я пробую всю ориентацию таким образом, но она не работает:

CGImageRef cgRef = image.CGImage;
   image = [[UIImage alloc] initWithCGImage:cgRef scale:1.0 orientation:UIImageOrientationDownMirrored];
    UIImage *originalImage = image;

3 ответа

Попробуйте этот код:

  -  (UIImage *)imageRotatedByDegrees:(UIImage*)oldImage deg:(CGFloat)degrees
   {
//Calculate the size of the rotated view's containing box for our drawing space
UIView *rotatedViewBox = [[UIView alloc] initWithFrame:CGRectMake(0,0,oldImage.size.width, oldImage.size.height)];
CGAffineTransform t = CGAffineTransformMakeRotation(degrees * M_PI / 180);
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, (degrees * M_PI / 180));

//Now, draw the rotated/scaled image into the context
CGContextScaleCTM(bitmap, 1.0, -1.0);
CGContextDrawImage(bitmap, CGRectMake(-oldImage.size.width / 2, -oldImage.size.height / 2, oldImage.size.width, oldImage.size.height), [oldImage CGImage]);

UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
   }

Согласно этой теме, в формате PNG есть известная проблема с ротацией, я бы посоветовал вам попробовать UIImageJPEGRepresentation с data:image/jpg; вместо data:image/png;, Таким образом, он, вероятно, установит флаг поворота.

Надеюсь, поможет!

Вы можете сохранить в своем приложении и получить изображение из памяти для просмотра с кодом:

- (UIImage *)finishSavePhotoWithImagePickerController:(NSDictionary *()info {

    UIImage *editedImage = (UIImage *) [info objectForKey:UIImagePickerControllerEditedImage];
    UIImage *originalImage = (UIImage *) [info objectForKey:UIImagePickerControllerOriginalImage];

    if (editedImage) {
        imageToSave = editedImage;
    } else {
        imageToSave = originalImage;
    }

    NSData *imageData = UIImageJPEGRepresentation(imageToSave, 1.0);
    [imageData writeToFile:@"yourFilePath" options:NSDataWritingFileProtectionNone error:nil];
    UIImage *showImage = [[UIImage alloc] initWithContentsOfFile:@"yourFilePath"];
    return showImage;
}
Другие вопросы по тегам