ASIHTTP:上传 UIImage?
有人可以告诉我如何在 Objective-c 中使用 ASIHTTPRequest 对象上传 UIImage 对象吗?我需要将其转换为 NSData 对象吗?
(这是头像上传网址)
E.g.
UIImage *toUpload = [UIImage imageNamed:@"test.jpg"]
URL: "http://www.example.com/api/users/avatar/upload?access_token=12345"
RequestType: PUT
Can someone please tell me how I can use an ASIHTTPRequest object in Objective-c to upload an UIImage object? Do I need to convert it to an NSData object?
(This is for an avatar upload url)
E.g.
UIImage *toUpload = [UIImage imageNamed:@"test.jpg"]
URL: "http://www.example.com/api/users/avatar/upload?access_token=12345"
RequestType: PUT
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面是一个使用 ASIFormRequest 的示例,该示例还将尝试将图像压缩到给定的最大大小
Heres an example using ASIFormRequest that will also attempt to compress the image to given maximum size