我正在使用ASIHTTP将数据发布到服务器,所有数据都按原样收到
我正在使用
上传图片 [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!";
}
答案 0 :(得分: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!";
}