下面是我将图像发送到服务器以获取有关图像信息的属性。
NSDictionary* parameters = [NSDictionary dictionaryWithObjectsAndKeys:@"en_US", @"image_request[locale]", @"en", @"image_request[language]",[NSURL URLWithString:@"<file url>"], @"image_request[image]", nil];
要上传图片,请使用以下代码:
NSData *imageData = UIImageJPEGRepresentation(image, 0.1);
但是参数要求我提供 url。有没有什么方法可以让我拍一张照片并将其上传到服务器并获取该 url 并将其附加到参数中或找到任何替代方法。并且正在使用 Unirest http库发送请求。