0

ASIHTTPを使用してデータをサーバーにPOSTしていますが、すべてのデータが正常に受信されます

で画像をアップロードしています

    [request1 setData:imageData withFileName:@"upload.png" andContentType:@"image/png" forKey:@"Image"];

ここで、imageDataはNSDataです。

-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
    NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
    [self dismissModalViewControllerAnimated:YES];
    if ([mediaType isEqualToString:(NSString *)kUTTypeImage]) {

        UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"] ;
        UIGraphicsBeginImageContext(CGSizeMake(320,480)); 

        UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); 
        UIGraphicsEndImageContext();
        CGSize kMaxImageViewSize = {.width = 100, .height = 100};

        //[self resizeImage:newImage newSize:kMaxImageViewSize];
        imageData=UIImageJPEGRepresentation([self resizeImage:newImage newSize:kMaxImageViewSize], 0.5); 

}
- (UIImage *)resizeImage:(UIImage*)image newSize:(CGSize)newSize {
    CGRect newRect = CGRectIntegral(CGRectMake(0, 0, newSize.width, newSize.height));
    CGImageRef imageRef = image.CGImage;

    UIGraphicsBeginImageContextWithOptions(newSize, NO, 0);
    CGContextRef context = UIGraphicsGetCurrentContext();

    // Set the quality level to use when rescaling
    CGContextSetInterpolationQuality(context, kCGInterpolationHigh);
    CGAffineTransform flipVertical = CGAffineTransformMake(1, 0, 0, -1, 0, newSize.height);

    CGContextConcatCTM(context, flipVertical);  
    // Draw into the context; this scales the image
    CGContextDrawImage(context, newRect, imageRef);

    // Get the resized image from the context and a UIImage
    CGImageRef newImageRef = CGBitmapContextCreateImage(context);
    UIImage *newImage = [UIImage imageWithCGImage:newImageRef];

    CGImageRelease(newImageRef);
    UIGraphicsEndImageContext();    

    return newImage;
}

これが私が画像のサイズを変更する方法です。私が抱えている問題は、画像がサーバーに保存されると、白い画像、空白の画像が表示されることです。それはサーバーの問題なのか、それともアプリから送信しないものなのか

編集これ が私のサーバーコードです

$filename="upload";
$target_path = "uploads/";
$target_path = $target_path .$filename.".png"; 
if(move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) {
echo "uploaded an image";
} else{
    echo "There was an error uploading the file, please try again!";
}
4

1 に答える 1

1
        if (newImagesTaken.size.width > 320 || newImagesTaken.size.height > 480) {
                                // resize the image
                                float actualHeight = newImagesTaken.size.height;
                                float actualWidth = newImagesTaken.size.width;
                                float imgRatio = actualWidth/actualHeight;
                                float maxRatio = self.view.frame.size.width/self.view.frame.size.height;

                                if(imgRatio < maxRatio){
                                    imgRatio = self.view.frame.size.height / actualHeight;
                                    actualWidth = imgRatio * actualWidth;
                                    actualHeight = self.view.frame.size.height;
                                }
                                else{
                                    imgRatio = self.view.frame.size.width / actualWidth;
                                    actualHeight = imgRatio * actualHeight;
                                    actualWidth = self.view.frame.size.width;
                                }
                                CGRect rect = CGRectMake(0.0, 0.0, actualWidth, actualHeight);
                                UIGraphicsBeginImageContext(rect.size);
                                [newImagesTaken drawInRect:rect];
                                newImagesTaken = UIGraphicsGetImageFromCurrentImageContext();
                                UIGraphicsEndImageContext();
                            }    

                            /////////////////////////////////////////////////////////////////////////////

                            NSData *imageData = UIImageJPEGRepresentation(newImagesTaken, 1.0);
     [request addData:imageData withFileName:@"ByDefault.jpeg" andContentType:@"image/jpeg" forKey:@"Filedata"];



$target_path = "uploads/";

$target_path = $target_path .  $_FILES['media']['name']; 

if(move_uploaded_file($_FILES['media']['tmp_name'],$target_path)) {
echo "The file ".  basename( $_FILES['media']['name']). 
" has been uploaded";
} 
else
{
echo "There was an error uploading the file, please try again!";
}
于 2012-07-09T21:01:53.557 に答える