在我的应用程序中,用户裁剪图片我将其编码为base64字符串并将其发送到我的php脚本。我正在使用NSData + base64类但是,当应用程序再次检索字符串以转换回图片我收到此错误:
Jan 8 14:21:33 Vessel.local Topic[11039] <Error>: ImageIO: JPEG Corrupt JPEG data:214 extraneous bytes before marker 0x68 Jan 8 14:21:33 Vessel.local Topic[11039] <Error>: ImageIO: JPEG Unsupported marker type 0x68
以下是我发送数据的代码:
NSString *urlString = [NSString stringWithFormat:@"http://myurl.php"];
NSURL *url = [NSURL URLWithString:urlString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:30.0];
[request setHTTPMethod:@"POST"];
NSString *param = [NSString stringWithFormat:@"username=%@&password=%@&email=%@"e=%@&pic=%@",user,password,email,quote,pic];
[request setHTTPBody:[param dataUsingEncoding:NSUTF8StringEncoding]];
NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES];
这是当我把它拿回另一个视图控制器并尝试将其变回图像时
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
homeData = [NSJSONSerialization JSONObjectWithData:responseData options:nil error:nil];
NSString *decodeString = [[homeData objectAtIndex:0]objectForKey:@"profile_pic" ];
decodeString = [decodeString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
int returnNUM = [decodeString length];
NSLog(@"RETURN STRING=%d",returnNUM);
NSData *data = [[NSData alloc] initWithData:[NSData dataFromBase64String:decodeString]];
profilepic = [[UIImageView alloc]initWithFrame:CGRectMake(5, 4, 120, 120)];
profilepic.image = [UIImage imageWithData:data];
UIGraphicsBeginImageContextWithOptions(profilepic.bounds.size, NO, 1.0);
[[UIBezierPath bezierPathWithRoundedRect:profilepic.bounds cornerRadius:80.0] addClip];
[pic drawInRect:profilepic.bounds];
profilepic.image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[self.view addSubview:profilepic];
}
一旦我发布它,我怎么能防止图像被破坏..或者一旦我找回它,我该如何清理它或防止发生的腐败!这让我疯狂......一些代码的明确答案将受到高度赞赏。谢谢
这是我在发送之前将图像转换为base64的代码。
NSData *imageData = UIImageJPEGRepresentation(crop, 1.0);
NSString *baseString = [imageData base64EncodedString];
int original =[baseString length];
NSLog(@"orignal String=%d",original);
[self register:username.text withPass:password.text withEmail:email.text withQuote:quote.text withPic:baseString];
答案 0 :(得分:0)
为什么要进行“stringByTrimmingCharactersInSet”调用?在我看来,删除编码图像可能需要的字符......
编辑以包含我正在使用的一些代码中的示例,这些代码正确地将一些图像嵌入到http表单中以提交到php页面。
我在NSMutableData上使用以下类别......
以下内容包含在NSMutableData + HTTP.h
中@interface NSMutableData (HTTP)
-(void)appendFileAtPath:(NSString*)fullFilePath withFormKey:(NSString*)formKey withSuggestedFileName:(NSString*)suggestedFileName boundary:(NSData*)boundary;
-(void)appendKey:(NSString*)key value:(NSString*)value boundary:(NSData*)boundary;
@end
以下内容包含在NSMutableData + HTTP.m
中#import "NSMutableData+HTTP.h"
@implementation NSMutableData (HTTP)
//use for attaching a file to the http data to be posted
-(void)appendFileAtPath:(NSString*)fullFilePath withFormKey:(NSString*)formKey withSuggestedFileName:(NSString*)suggestedFileName boundary:(NSData*)boundary{
[self appendData:boundary];
[self appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"; filename=\"%@\"\r\n", formKey, suggestedFileName] dataUsingEncoding:NSUTF8StringEncoding]];
[self appendData:[@"Content-Type: application/octet-stream\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[self appendData:[NSData dataWithContentsOfFile:fullFilePath]];
[self appendData:[@"Content-Encoding: gzip\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[self appendData:boundary];
}
//use for attaching a key value pair to the http data to be posted
-(void)appendKey:(NSString*)key value:(NSString*)value boundary:(NSData*)boundary{
[self appendData:boundary];
[self appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n", key] dataUsingEncoding:NSUTF8StringEncoding]];
[self appendData:[value dataUsingEncoding:NSUTF8StringEncoding]];
[self appendData:boundary];
}
@end
然后在我创建http表单提交的代码中,我执行以下操作将一对图像和键值对(通过上面的类别方法)附加到表单...(注意:我没有包含NSURLConnectionDelegate方法如果要跟踪表单提交的进度,则需要实现。)
NSString *boundaryString = @"0xKhTmLbOuNdArY";
NSData *boundaryData = [[NSString stringWithFormat:@"\r\n--%@\r\n", boundaryString] dataUsingEncoding:NSUTF8StringEncoding];
NSString *phpReceiverURL = @"http://www.someurl.com/somephppage.php";
NSMutableURLRequest *theRequest = [[NSMutableURLRequest alloc] init];
[theRequest setTimeoutInterval:30];
[theRequest setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
[theRequest setHTTPShouldHandleCookies:NO];
[theRequest setURL:[NSURL URLWithString:phpReceiverURL]];
[theRequest setHTTPMethod:@"POST"];
[theRequest addValue:[NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundaryString] forHTTPHeaderField: @"Content-Type"];
NSMutableData *body = [NSMutableData data];
//add some image files to the form
[body appendFileAtPath:[imagePath stringByAppendingPathComponent:@"cat.jpg"]
withFormKey:@"cat"
withSuggestedFileName:@"received-cat.jpg"
boundary:boundaryData
];
[body appendFileAtPath:[imagePath stringByAppendingPathComponent:@"dog.jpg"]
withFormKey:@"dog"
withSuggestedFileName:@"received-dog.jpg"
boundary:boundaryData
];
//add some key value pairs to the form
[body appendKey:@"testkeyone" value:@"testvalueone" boundary:boundaryData];
[body appendKey:@"testkeytwo" value:@"testvaluetwo" boundary:boundaryData];
// setting the body of the post to the reqeust
[theRequest setHTTPBody:body];
//create the connection
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
还要注意我没有在我的应用程序之外测试这个,所以我可能忘记了某些东西(例如我在上面的例子中没有定义的“imagePath” - 你必须为你的图像指定路径) ,但它应该让你很好地了解如何将一些图像附加到一个表单提交到PHP页面。
希望这有帮助!