在发送到服务器之前在 iPhone 中调整照片大小
制作一个应用程序,我们希望将照片和一些表单数据发送到服务器。图像很大,需要很长时间才能上传,而且我们真的不需要网站上的像素信息。有没有什么方法可以调整图像的大小(来自相机或您的画廊),以便我们只将更小的图像发送到网络空间?这在 Android 中很容易做到,但我们正在努力寻找适用于 iPhone 的简单解决方案。
Making an app where we want to send a photo to a server along with some form data. The image is huge and it takes forever to upload and we really don't need the pixel information on the website. Is there any way to resize an image (from camera or your gallery) so that we're only sending a much smaller image into cyberspace? This is easy to do in Android but we're struggling to find an easy solution for iPhone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅以正确的方式调整 UIImage 大小< /a> 用于调整代码大小和讨论。要选择图像,您可以执行以下操作
See Resize a UIImage the right way for resizing code and discussion. To pick the image you can do
WWDC 2010 会议 N104 涵盖了大多数问题。有一个滚动视图,但是其中描述的方法可以在您的任务中使用。
The most of you question issues is covered by WWDC 2010 session N104. There is a scroll views, but methods, which described there can be using in you task.
在 UIImage 中:
只是想出一个想法......
In UIImage:
Just scratching out an idea...