如何减小 UIImageView 上图像显示的尺寸
我的问题是,在我的应用程序中,我有 UIImageview
、button1
、button2
。 button1
用于访问保存的照片库中的图像,button2 用于将图像存储在数据库中,
但图像尺寸为(800x800),非常大,我想将其存储为(50x50)尺寸
如何单击button2时缩小图像尺寸?
My problem is that, in my app I have UIImageview
, button1
, button2
. button1
is used to access images from saved photolibrary and button2 is used to store image in database,
But image size is (800x800) which is very large, I want to store it at (50x50) size
How to reduce size of image when button2 is clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个类别将为您完成这项工作 -
UIImage+Additions.h -
UIImage+Additions.m -
This category will do the job for you -
UIImage+Additions.h -
UIImage+Additions.m -
请参阅上一个问题使用 iPhone SDK 调整/优化图像尺寸的最简单方法是什么?以供进一步参考
Pls see this previous SO question What's the easiest way to resize/optimize an image size with the iPhone SDK? for further reference