3

iPhone から Web サービスに画像をアップロードしようとしていますが、ファイルは正常にアップロードされますが、jpg が表示されず、壊れているようです。

次の C# コードを使用して、ファイルを正常にアップロードし、正常に動作させることができます。

var url = http://myurl.co.uk/services/service.svc/UploadImage?id=108&ext=png;

HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url);
req.Method = "POST";
req.ContentType = "image/jpeg";

using (var reqStream = req.GetRequestStream())
{
    var bytes = File.ReadAllBytes("C:\\Users\\Chris\\Pictures\\default.png”);
    reqStream.Write(bytes, 0, bytes.Length);
}
HttpWebResponse resp = (HttpWebResponse)req.GetResponse();

Console.WriteLine("HTTP/{0} {1} {2}", resp.ProtocolVersion, (int)resp.StatusCode, resp.StatusDescription);

それでも、これは私がiOSで試しているコードで、ファイルを表示できないままにしています:

画像を取得

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage];
    // Resize the image from the camera
    UIImage *scaledImage = [image resizedImageWithContentMode:UIViewContentModeScaleAspectFill bounds:CGSizeMake(_photo.frame.size.width/2, _photo.frame.size.height/2) interpolationQuality:kCGInterpolationHigh];
    // Crop the image to a square (yikes, fancy!)
    UIImage *croppedImage = [scaledImage croppedImage:CGRectMake((scaledImage.size.width -_photo.frame.size.width)/2, (scaledImage.size.height -_photo.frame.size.height)/2, _photo.frame.size.width, _photo.frame.size.height)];
    // Show the photo on the screen
    _photo.image = croppedImage;

    NSData *imgData=UIImageJPEGRepresentation(croppedImage,1);
    NSLog(@"Original size:%d",[imgData length]);
    NSData *smallerImage=UIImageJPEGRepresentation(croppedImage, 0.5);
    NSLog(@"End size:%d",[smallerImage length]);
    imageData = imgData;

    NSString *imageName = @"tempImage.jpg";
    NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,  NSUserDomainMask, YES);
    NSString * documentsDirectoryPath = [paths objectAtIndex:0];

    NSString *dataPath = [documentsDirectoryPath  stringByAppendingPathComponent:imageName];
    NSData* settingsData = UIImageJPEGRepresentation(croppedImage, 0.5);

    [settingsData writeToFile:dataPath atomically:YES];

    [picker dismissModalViewControllerAnimated:YES];
}

画像をアップロード:

-(void)uploadImageForOfferID:(NSString *)offerID imageExtention:(NSString *)extension withCompletionBlock:(void(^)(NSError *error))block
{
    NSString *imageName = @"tempImage.jpg";
    NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,  NSUserDomainMask, YES);
    NSString * documentsDirectoryPath = [paths objectAtIndex:0];

    NSString *dataPath = [documentsDirectoryPath  stringByAppendingPathComponent:imageName];
    NSData* imageData = [NSData dataWithContentsOfFile:dataPath];

    AFHTTPClient *client = [AFHTTPClient clientWithBaseURL:[NSURL URLWithString:masterURL]];

    NSString *url = [NSString stringWithFormat:@"UploadImage?id=%@&ext=%@", offerID, extension];
    NSMutableURLRequest *request = [client multipartFormRequestWithMethod:@"POST" path:url parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
        [formData appendPartWithFileData:imageData name:@"photo" fileName:@"photo.jpg" mimeType:@"image/jpeg"];
    }];

    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];

    [operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
        NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
    }];

    [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
        NSLog(@"Complete");
        block(nil);
    } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
        NSLog(@"Failed");
        NSLog(@"FAILED WITH STATUS CODE %d - error description: %@", operation.response.statusCode, error.description);
        block(error);
    }];
    [operation start];
}

このメソッドは、最初に画像をファイルに保存してからアップロードします。また、データをアップロードしようとしましNSData *smallerImage=UIImageJPEGRepresentation(croppedImage, 0.5);たが、結果は同じでした。

アップロードで何か不足していますか?

ありがとう

編集 - -

シミュレーターからのファイルとアップロードされたファイルを比較します。元のシミュレーター の画像にはサムネイルが表示されますが、アップロードされた画像には表示されません2,538 bytes (4 KB on disk)2,698 bytes (4 KB on disk)アップロードした画像は Photoshop で開くことができますが、Safari や Chrome では開くことができません。

4

1 に答える 1

0

image/jpeg提供されたコードで指しているファイルが実際には.pngファイルであり、使用する必要がある場合に、タイプ付きの画像を送信することに関係がありますimage/pngか?

于 2012-12-24T15:21:44.113 に答える