【问题标题】:Camera image changes orientation相机图像改变方向
【发布时间】:2011-06-01 17:14:54
【问题描述】:

我一直在尝试将相机图像从 iPhone 上传到我的网络服务器,但是一些图像在之后如何改变它的方向。这只发生在相机图像上,而不是从我的机器上传到设备的简单图像。

下面是代码:

    NSData *imgdataRepresentation = UIImageJPEGRepresentation(imgTemp, 0.5);


    ///////**********************************************
    // setting up the URL to post to
    NSString *addPhotoURL = [NSString stringWithFormat:@"%@%@%@",HTTP_HOST,ADD_PHOTO_URL,[userInfo.userDetail objectForKey:@"id"]];

    // setting up the request object now
    NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
    [request setURL:[NSURL URLWithString:addPhotoURL]];
    [request setHTTPMethod:@"POST"];

    /*
     add some header info now
     we always need a boundary when we post a file
     also we need to set the content type

     You might want to generate a random boundary.. this is just the same
     as my output from wireshark on a valid html post
     */
    NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"];
    NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
    [request addValue:contentType forHTTPHeaderField: @"Content-Type"];

    /*
     now lets create the body of the post
     */
    NSMutableData *body = [NSMutableData data];
    [body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"Album\"; filename=\"ipodfile.jpg\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
    [body appendData:[NSData dataWithData:imgdataRepresentation ]];
    [body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
    // setting the body of the post to the reqeust
    [request setHTTPBody:body];

    // now lets make the connection to the web
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

【问题讨论】:

    标签: iphone image upload orientation


    【解决方案1】:

    无论手机如何握持,iPhone 图像始终以相同的方式存储,但 EXIF 数据中设置了一个标志,指定图像应采用的方向。几乎所有本机 OSX 应用程序(例如 iPhoto 和 Preview)都可以读取此 EXIF 方向标记正确并自动旋转图像,但几乎所有 Windows 应用程序和 Web 浏览器都不考虑方向 EXIF 标记。在保存之前,您必须在 Web 服务器上手动旋转图像。我不知道您使用的是哪种 Web 服务器技术,但是执行此操作的 C# 代码是:

    public static void FixOrientation(this Image image)
    {
        // 0x0112 is the EXIF byte address for the orientation tag
        if (!image.PropertyIdList.Contains(0x0112))
        {
            return;
        }
    
        // get the first byte from the orientation tag and convert it to an integer
        var orientationNumber = image.GetPropertyItem(0x0112).Value[0];
    
        switch (orientationNumber)
        {
            // up is pointing to the right
            case 8:
                image.RotateFlip(RotateFlipType.Rotate270FlipNone);
                break;
            // up is pointing to the bottom (image is upside-down)
            case 3:
                image.RotateFlip(RotateFlipType.Rotate180FlipNone);
                break;
            // up is pointing to the left
            case 6:
                image.RotateFlip(RotateFlipType.Rotate90FlipNone);
                break;
            // up is pointing up (correct orientation)
            case 1:
                break;
        }
    }
    

    【讨论】:

    • 感谢您的快速回复。我正在使用 PHP,但现在的问题是如何在相机图像和从我的桌面添加到我的设备的图像之间保持标签。
    • 这很简单,我的 C# 代码说明了这一点。如果存在 EXIF 方向标签,则根据方向标签信息旋转图像。否则,什么也不做。
    • 我自己不知道任何 PHP,但我确实通过 Google 快速搜索找到了这个:bytes.com/topic/php/answers/641481-thumbnail-orientation
    • 感谢丹尼尔的帮助和快速回复。
    • 您能否提供完整的答案,我不确定您如何将输入流或字节 [] 转换为 Image 对象。
    【解决方案2】:

    您可以使用 imageOrientation 方法获取 UIImage 的图像方向。因此,例如,您想保存从相机拍摄的图像,您可以这样做:

    UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
    if (image) {
        ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
        [library writeImageToSavedPhotosAlbum:[image CGImage] 
                                  orientation:[image imageOrientation]
                              completionBlock:^(NSURL *assetURL, NSError *error){ /* error handling */ }];
        [library autorelease];
    }
    

    然后当您想从库中获取 UIImage 时,您可以通过执行以下操作来检索方向:

    UIImage *image = [UIImage imageWithCGImage:[[asset defaultRepresentation] fullResolutionImage] scale:1.0 orientation:[asset orientation]]; 
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-06-08
      • 1970-01-01
      • 1970-01-01
      • 2019-04-13
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多