如何将UIImage
or转换NSDate
为字节数组并发布到服务器。在我的应用程序中,我必须转换UIImage
为字节数组并且必须发布。
对于我使用的帖子ASIFormDataRequest
。
我的代码是:
NSUInteger len = [self.dataImage length];
Byte *byteData= (Byte*)malloc(len); //converting date to byte array
[self.dataImage getBytes:byteData length:len];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:urlStr]];
[request setRequestMethod:@"POST"];
[request addData:self.dataImage withFileName:@"Image.png" andContentType:@"image/png" forKey:@"photo"];
[request setDelegate:self];
[request startAsynchronous];