如何将 iphoto 中的图片上传到网络服务器?
我想拍一张照片或从 iphoto 库中挑选一张照片,然后将其上传到网络服务器。 使用 imagePickerController 我只能得到一个 UIImage 对象,我无法知道它的文件路径或文件类型(png,jpg等)。我google了很久还是没找到解决办法。任何人都可以帮助我吗?谢谢你!
I want to take a photo or pick a picture from iphoto library and then upload it to webserver.
Use imagePickerController I can only get a UIImage Object,I can't know it's file path or file type(png,jpg,etc.). I have google for a long time but still can't find a solution. Any one can help me? Thank You!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从图像中获取原始数据。看一下这个之类的问题。
然后,只需在您的 http 请求上设置适当的 MIME 类型并将数据发送到服务器即可。
You need to get the raw data from the image. Take a look at questions like this one.
Then, just set the appropriate MIME type on your http request and shoot the data up to the server.