MFMailComposeViewController图像方向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFMailComposeViewController图像方向相关的知识,希望对你有一定的参考价值。

我正在开发一个通用应用程序,我正在为ios6编写代码。

我正在使用imagePickerController拍摄照片,然后我使用MFMailComposeViewController将其作为附件发送。所有这些都有效。

我的问题是,当我以纵向模式拍摄照片时,MFMailComposeViewController以横向模式显示。此外,当它到达目的地电子邮件地址时,它以横向模式显示。

如果我以横向模式拍摄照片,它将以横向模式显示在MFMailComposeViewController中,当它到达目的地电子邮件地址时,它将以横向模式显示。所以没关系。

我的两个测试设备都有同样的问题; iPhone5和iPad2。

如何以纵向模式拍摄照片以纵向模式到达电子邮件目的地?

以下是我将图像添加到电子邮件的方式:

if ( [MFMailComposeViewController canSendMail] )
   {
   MFMailComposeViewController * mailVC = [MFMailComposeViewController new];
   NSArray * aAddr  = [NSArray arrayWithObjects: gAddr, nil];
   NSData * imageAsNSData = UIImagePNGRepresentation( gImag );

   [mailVC setMailComposeDelegate: self];
   [mailVC        setToRecipients: aAddr];
   [mailVC             setSubject: gSubj];
   [mailVC      addAttachmentData: imageAsNSData
                         mimeType: @"image/png"
                         fileName: @"myPhoto.png"];
   [mailVC         setMessageBody: @"Blah blah"
                          ishtml: NO];

   [self presentViewController: mailVC
                      animated: YES
                    completion: nil];
   }
else
   {
   NSLog( @"Device is unable to send email in its current state." );
   }
答案

我已经花了几个小时研究这个问题,现在我已经清楚发生了什么以及如何解决它。

重复一下,我遇到的问题是:

当我使用imagePickerController在相机上以纵向模式拍摄图像并将该图像传递给MFMailComposeViewController并通过电子邮件发送时,它会到达目标电子邮件地址并在横向模式下显示不正确。

但是,如果我以横向模式拍摄照片然后发送,它将以横向模式正确显示在电子邮件的目的地

那么,如何以纵向模式拍摄照片以纵向模式到达电子邮件目的地?这是我原来的问题。

这是代码,正如我在原始问题中所展示的那样,除了我现在将图像作为JPEG而不是PNG发送,但这没有任何区别。

这就是我使用imagePickerController捕获图像并将其放入一个名为gImag的全局图中的方法:

gImag = (UIImage *)[info valueForKey: UIImagePickerControllerOriginalImage];
[[self imageView] setImage: gImag];             // send image to screen
[self imagePickerControllerRelease: picker ];   // free the picker object

这就是我使用MFMailComposeViewController通过电子邮件发送它的方式:

if ( [MFMailComposeViewController canSendMail] )
   {
   MFMailComposeViewController * mailVC = [MFMailComposeViewController new];
   NSArray * aAddr  = [NSArray arrayWithObjects: gAddr, nil];
   NSData * imageAsNSData = UIImageJPEGRepresentation( gImag );

   [mailVC setMailComposeDelegate: self];
   [mailVC        setToRecipients: aAddr];
   [mailVC             setSubject: gSubj];
   [mailVC      addAttachmentData: imageAsNSData
                         mimeType: @"image/jpg"
                         fileName: @"myPhoto.jpg"];
   [mailVC         setMessageBody: @"Blah blah"
                           isHTML: NO];

   [self presentViewController: mailVC
                      animated: YES
                    completion: nil];
   }
else NSLog( @"Device is unable to send email in its current state." );

当我描述如何解决这个问题时,我将专注于使用iPhone 5并使用主摄像头拍摄3264x2448以保持简单。但是,此问题会影响其他设备和分辨率。

解决这个问题的关键是要意识到,当您拍摄图像时,无论是横向画像,iPhone总是以相同的方式存储UIImage:3264宽和2448高。

UIImage有一个属性,描述了捕获图像时的方向,你可以这样得到它:

UIImageOrientation orient = image.imageOrientation;

请注意,orientation属性不描述如何物理配置UIImage中的数据(如3264w x 2448h);它仅描述了捕获图像时的方向。

该属性的用途是告诉即将显示图像的软件,如何旋转它以使其正确显示。

如果以纵向模式捕获图像,image.imageOrientation将返回UIImageOrientationRight。这告诉显示软件需要将图像旋转90度以便正确显示。要明确的是,这种“旋转”不会影响UIImage的底层存储,它仍然是3264w x 2448h。

如果以横向模式捕获图像,image.imageOrientation将返回UIImageOrientationUp。 UIImageOrientationUp告诉显示软件图像可以正常显示;不需要轮换。同样,UIIMage的底层存储是3264w x 2448h。

一旦您清楚了解数据的物理存储方式与方向属性在捕获数据时如何使用方向属性之间的区别,事情就会变得更加清晰。

我创建了几行调试代码来“看到”所有这些。

这是添加了调试代码的imagePickerController代码:

gImag = (PIMG)[info valueForKey: UIImagePickerControllerOriginalImage];

UIImageOrientation orient = gImag.imageOrientation;
CGFloat            width  = CGImageGetWidth(gImag.CGImage);
CGFloat            height = CGImageGetHeight(gImag.CGImage);

[[self imageView] setImage: gImag];                 // send image to screen
[self imagePickerControllerRelease: picker ];   // free the picker object

如果我们拍摄肖像,gImage会以UIImageOrientationRight到达,宽度= 3264,高度= 2448。

如果我们拍摄风景,gImage会以UIImageOrientationUp和width = 3264并且height = 2448到达。

如果我们继续使用E-Mailng MFMailComposeViewController代码,我也在其中添加了调试代码:

if ( [MFMailComposeViewController canSendMail] )
   {
   MFMailComposeViewController * mailVC = [MFMailComposeViewController new];
   NSArray * aAddr  = [NSArray arrayWithObjects: gAddr, nil];

   UIImageOrientation orient = gImag.imageOrientation;
   CGFloat            width  = CGImageGetWidth(gImag.CGImage);
   CGFloat            height = CGImageGetHeight(gImag.CGImage);

   NSData * imageAsNSData = UIImageJPEGRepresentation( gImag );

   [mailVC setMailComposeDelegate: self];
   [mailVC        setToRecipients: aAddr];
   [mailVC             setSubject: gSubj];
   [mailVC      addAttachmentData: imageAsNSData
                         mimeType: @"image/jpg"
                         fileName: @"myPhoto.jpg"];
   [mailVC         setMessageBody: @"Blah blah"
                           isHTML: NO];

   [self presentViewController: mailVC
                      animated: YES
                    completion: nil];
   }
else NSLog( @"Device is unable to send email in its current state." );

在这里看到没什么了不起的。我们得到的值与imagePickerController代码中的值完全相同。

让我们看看问题究竟是如何表现出来的:

首先,相机拍摄人像照片,并以纵向模式正确显示:

[[self imageView] setImage: gImag];                 // send image to screen

它正确显示,因为这行代码可以看到orientation属性并适当地旋转图像(而不是在3264x2448处触及底层存储)。

控制流现在转到E-Mailer代码,并且orientation属性仍然存在于gImag中,因此当MFMailComposeViewController代码在传出电子邮件中显示图像时,它是正确定向的。物理图像仍然存储为3264x2448。

发送电子邮件,并且在接收端,方向属性的知识已经丢失,因此接收软件显示图像,因为它实际布局为3264x2448,即横向。

在调试中,我遇到了额外的困惑。也就是说,如果你不正确地复制了它,那么可以从UIImage中去除orientation属性。

此代码显示了问题:

if ( [MFMailComposeViewController canSendMail] )
   {
   MFMailComposeViewController * mailVC = [MFMailComposeViewController new];
   NSArray * aAddr  = [NSArray arrayWithObjects: gAddr, nil];

   UIImageOrientation orient = gImag.imageOrientation;
   CGFloat            width  = CGImageGetWidth(gImag.CGImage);
   CGFloat            height = CGImageGetHeight(gImag.CGImage);

   UIImage * tmp = [[UIImage alloc] initWithCGImage: gImag.CGImage];

   orient = tmp.imageOrientation;
   width  = CGImageGetWidth(tmp.CGImage);
   height = CGImageGetHeight(tmp.CGImage);

   NSData * imageAsNSData = UIImageJPEGRepresentation( tmp );

   [mailVC setMailComposeDelegate: self];
   [mailVC        setToRecipients: aAddr];
   [mailVC             setSubject: gSubj];
   [mailVC      addAttachmentData: imageAsNSData
                         mimeType: @"image/jpg"
                         fileName: @"myPhoto.jpg"];
   [mailVC         setMessageBody: @"Blah blah"
                           isHTML: NO];

   [self presentViewController: mailVC
                      animated: YES
                    completion: nil];
   }
else NSLog( @"Device is unable to send email in its current state." );

当我们查看新UIImage tmp的调试数据时,我们得到UIImageOrientationUp和width = 3264以及height = 2448。

方向属性已被剥离,默认方向为“向上”。如果你不知道正在进行剥离,它确实会让事情变得混乱。

如果我运行此代码,我现在得到以下结果:

imagePickerController代码中的内容没有变化;像以前一样捕获图像。

控制流程继续进行E-Mailer代码,但现在已从tmp图像中删除了orientation属性,因此当MFMailComposeViewController代码在传出电子邮件中显示tmp图像时,它将以横向模式显示(因为默认方向是UIImageOrientationUp,因此没有完成3264x2448图像的旋转)。

电子邮件被发送,并且在接收端,也缺少对方向属性的了解,因此接收软件在物理布局为3264x2448(即横向)时显示图像。

通过使用以下代码制作UIImage副本,可以避免在制作UIImage副本时“取消”方向属性,如果有人知道它正在进行中,则:

UIImage * tmp = [UIImage imageWithCGImage: gImag.CGImage
                                    scale: gImag.scale
                              orientation: gImag.imageOrientation];

这样可以避免在途中丢失方向属性,但是当您通过电子邮件发送图像时,它仍然无法解决远端丢失的问题。

有一种更好的方式比所有这些搞乱和担心方向属性。

我找到了一些代码here,我已经集成到我的程序中。此代码将根据其方向属性物理旋转基础存储图像。

对于具有UIImageOrientationRight方向的UIImage,它将物理旋转UIImage,使其最终为2448x3264,它将去除orientation属性,以便此后将其视为默认的UIImageOrientationUp。

对于UIImageOrientationUp方向的UIImage,它什么都不做。它让睡觉的风景狗撒谎。

如果你这样做,那么我认为(基于我到目前为止看到的),UIImage的方向属性此后是多余的。只要它仍然缺失/剥离或设置为UIImageOrientationUp,当您显示嵌入电子邮件中的图像时,您应该在沿途的每一步和远端正确显示图像。

我在答案中讨论过的所有内容,我都亲自单步,看着它发生了。

所以,这里我的最终代码有效:

gImag = (PIMG)[info valueForKey: UIImagePickerControllerOriginalImage];
[[self imageView] setImage: gImag];             // send image to screen
[self imagePickerControllerRelease: picker ];   // free the picker object

if ( [MFMailComposeViewController canSendMail] )
   {
   MFMailComposeViewController * mailVC = [MFMailComposeViewController new];
   NSArray                     * aAddr  = [NSArray arrayWithObjects: gAddr, nil];

   //...lets not touch the original UIImage

   UIImage * tmpImag = [UIImage imageWithCGImage: gImag.CGImage
                                           scale: gImag.scale
                                     orientation: gImag.imageOrientation];

   //...do physical rotation, if needed

   PIMG ImgOut = [gU scaleAndRotateImage: tmpImag];

   //...note orientation is UI

以上是关于MFMailComposeViewController图像方向的主要内容,如果未能解决你的问题,请参考以下文章