iphone:编写数据压缩或压缩代理?
我正在创建一个简单的服务,用于将照片从 iphone 上传到网络服务器。
但是,在发送请求之前,我希望应用程序在发送之前在后台压缩图片(自定义格式或其他格式)。
关于我如何去做这件事有什么指示吗?
I'm creating a simple service for uploading photographs from an iphone to a web server.
However, before the requests is sent, I want the app to compress the pictures (custom format or otherwise) in the background before sending it.
Any pointers on how I could go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看发布到 CocoaDev 的 NSDataCategory。它正是您想要做的。
http://www.cocoadev.com/index.pl?NSDataCategory
Check out the NSDataCategory posted to CocoaDev. It does exactly what you're looking to do.
http://www.cocoadev.com/index.pl?NSDataCategory
我使用 ziparchive 解压缩从服务器下载的内容。它还具有在 iOS 设备上创建 zip 文件的功能,可能正是您正在寻找的功能。
http://code.google.com/p/ziparchive/
I use ziparchive to unzip content downloaded from a server. It also has functionality to create zip files on an iOS device and might be what you are looking for.
http://code.google.com/p/ziparchive/