Я хотел бы взять BitmapImage и разместить его на странице PHP, которую я имею на сервере. Затем страница создает для меня файл .jpg на сервере.
Как я могу преобразовать это изображение в данные для HTTP POST? Вот сокращенная версия того, что я использовал для своего кода Objective-C на iPhone, чтобы дать вам представление о том, что я собираюсь сделать:
// We need to resize the images before uploading to the server.
resizedImage = [resizedImage resizedImageWithContentMode:UIViewContentModeScaleAspectFit bounds:CGSizeMake(h,w) interpolationQuality:kCGInterpolationHigh];
NSData *imageData = UIImageJPEGRepresentation(resizedImage, 0.9f);
// setting up the request object now
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
/*
add some header info now
we always need a boundary when we post a file
also we need to set the content type
You might want to generate a random boundary.. this is just the same
as my output from wireshark on a valid html post
*/
NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
/*
now lets create the body of the post
*/
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithString:[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@.jpg\"\r\n", barcode]] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
// setting the body of the post to the reqeust
[request setHTTPBody:body];
// now lets make the connection to the web
[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
Я понимаю, что это довольно сложная тема с большим количеством кода. Заранее спасибо за помощь.