iOS 사진 촬영 후 자동 으로 90 도 회전 하 는 완벽 한 해결 방법

오늘 사진 을 찍 어 사진 을 가 져 오 는 기능 을 개 발 했 을 때,업로드 후 사진 이 자동 으로 90 회전 하 는 것 을 발견 하 였 다.
테스트 결과,그림 이 2M 이상 이면 시스템 은 자동 으로 사진 을 뒤 집 는 것 으로 나 타 났 다.
  카메라 가 사진 을 찍 은 후 직접 꺼 낸 UIimage(UIImage PickerController OriginalImage 로 꺼 내기)는 그 자체 의 imageOrientation 속성 이 3,즉 UIImageOrientation Right 이다.이 그림 을 직접 사용 하면 괜 찮 지만 재단,크기 조정 등 을 하면 이 imageOrientation 속성 은 0 이 됩 니 다.이때 이 그림 은 다른 곳 에 사용 하면 회전 이 발생 한다.imageOrientation 은 읽 기만 하고 값 을 직접 수정 할 수 없습니다.
해결 방법 은 다음 과 같다.
1.카메라 의 속성 인 allows Editing 을 YES 로 설정 하고 이 값 을 설정 합 니 다.사진 을 찍 은 후에 사진 에 테두리 가 나타 납 니 다.이것 이 바로 사진 에 대한 재단 편집 입 니 다.카메라 의 대리 방법 에서 사진 을 찾 을 때 는UIImagePickerControllerOriginalImage로 찾 지 말고UIImagePickerControllerEditedImage써 야 한다.이 키 로 꺼 낸 사진 은 imageOrientation 이 0 이기 때문에 그 후의 어떤 재단,확대 작업 도 회전 을 일 으 키 지 않 습 니 다.이것 이 첫 번 째 방법 이다.
2.첫 번 째 해결 방법 은 거의 쓸모 가 없다.개발 과정 에서 그림 을 재단 하고 압축 한다.여기 에는 이 일 을 전문 적 으로 다 루 는 좋 은 category 가 있다.

+ (UIImage *)fixOrientation:(UIImage *)aImage {
  // No-op if the orientation is already correct
  if (aImage.imageOrientation ==UIImageOrientationUp)
    return aImage;
  // We need to calculate the proper transformation to make the image upright.
  // We do it in 2 steps: Rotate if Left/Right/Down, and then flip if Mirrored.
  CGAffineTransform transform =CGAffineTransformIdentity;
  switch (aImage.imageOrientation) {
    caseUIImageOrientationDown:
    caseUIImageOrientationDownMirrored:
      transform = CGAffineTransformTranslate(transform, aImage.size.width, aImage.size.height);
      transform = CGAffineTransformRotate(transform, M_PI);
      break;
    caseUIImageOrientationLeft:
    caseUIImageOrientationLeftMirrored:
      transform = CGAffineTransformTranslate(transform, aImage.size.width,0);
      transform = CGAffineTransformRotate(transform, M_PI_2);
      break;
    caseUIImageOrientationRight:
    caseUIImageOrientationRightMirrored:
      transform = CGAffineTransformTranslate(transform, 0, aImage.size.height);
      transform = CGAffineTransformRotate(transform, -M_PI_2);
      break;
    default:
      break;
  }
  switch (aImage.imageOrientation) {
    caseUIImageOrientationUpMirrored:
    caseUIImageOrientationDownMirrored:
      transform = CGAffineTransformTranslate(transform, aImage.size.width,0);
      transform = CGAffineTransformScale(transform, -1, 1);
      break;
    caseUIImageOrientationLeftMirrored:
    caseUIImageOrientationRightMirrored:
      transform = CGAffineTransformTranslate(transform, aImage.size.height,0);
      transform = CGAffineTransformScale(transform, -1, 1);
      break;
    default:
      break;
  }
  // Now we draw the underlying CGImage into a new context, applying the transform
  // calculated above.
  CGContextRef ctx =CGBitmapContextCreate(NULL, aImage.size.width, aImage.size.height,
                       CGImageGetBitsPerComponent(aImage.CGImage),0,
                       CGImageGetColorSpace(aImage.CGImage),
                       CGImageGetBitmapInfo(aImage.CGImage));
  CGContextConcatCTM(ctx, transform);
  switch (aImage.imageOrientation) {
    caseUIImageOrientationLeft:
    caseUIImageOrientationLeftMirrored:
    caseUIImageOrientationRight:
    caseUIImageOrientationRightMirrored:
      // Grr...
      CGContextDrawImage(ctx,CGRectMake(0,0,aImage.size.height,aImage.size.width), aImage.CGImage);
      break;
    default:
      CGContextDrawImage(ctx,CGRectMake(0,0,aImage.size.width,aImage.size.height), aImage.CGImage);
      break;
  }
  // And now we just create a new UIImage from the drawing context
  CGImageRef cgimg =CGBitmapContextCreateImage(ctx);
  UIImage *img = [UIImageimageWithCGImage:cgimg];
  CGContextRelease(ctx);
  CGImageRelease(cgimg);
  return img;
}
위 에서 말 한 것 은 편집장 이 소개 한 iOS 사진 을 찍 은 후 사진 이 자동 으로 90 도 회전 하 는 완벽 한 해결 방법 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 면 메 시 지 를 남 겨 주세요.편집장 은 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기