如何减小 iPhone 上 UIImage 的大小?
如果捕获的屏幕图像为 320x480,我怎样才能将 UIIMage 减小到 80x120 之类的值
if screen image is captured which is 320x480, how can I reduce that UIIMage to something like 80x120
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过两种不同的方式执行此操作:
1 - 如果您只想绘制不同大小的图像,只需缩放其父级(例如 UIImageView)。
2 - 缩放 UIImage 本身;这涉及将图像绘制到上下文中,然后抓取内容。这是一个展示如何执行此操作的网站: http://iosdevelopertips.com/graphics/how-to-scale-an-image-using-an-objective-c-category.html
You can do this two different ways:
1 - If you just want to draw the image with a different size, just scale its parent (e.g. UIImageView.)
2 - Scale the UIImage itself; this involves drawing the image to a context and then grabbing the contents. Here's a site that shows how to do this: http://iosdevelopertips.com/graphics/how-to-scale-an-image-using-an-objective-c-category.html