English 中文(简体)
将 UIIMage 转换为 CGIMage 导致图像旋转
原标题:Converting UIImage to CGImage cause rotation of Image

我试图用自定义的裁剪器裁剪图像。 不是从 UIImagePicker 主计长那里。 现在我要用处理 UIImgeView 代表的方式显示从图像提取器中提取的图像 :

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo {
    imvOriginalImage.image = image;
时 时

裁剪时, 我不得不将此图像转换为 CHGimageRef 。 图像以肖像模式拍摄。 当我转换 CHGimageRef 图像方向中的图像时, 图像会被更改 。 即使我使用以下方式 :

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo {
    //imvOriginalImage.image = image;
    CGImageRef imgRef = [image CGImage];
    UIImage *img = [UIImage imageWithCGImage:imgRef];
    [imvOriginalImage setImage:img];

时 时

图像方向被更改。 这只发生在以肖像模式捕捉到的图像上。 横向图像没有这个问题 。

  1. Why this is happening?
  2. How to solve this?

感谢前台

最佳回答

这是 iPhone 相机比照 Home 按钮旋转图像。 它使用 < a href=" https:// en.wikipedia. org/ wiki/ Exif" rel = " nofollow noreferr" > EXIF < /a > 是图像的元数据。 见此线索 :

问题回答

暂无回答




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签