如何减小 iPhone 上 UIImage 的大小?

发布于 2024-10-02 07:58:50 字数 56 浏览 2 评论 0原文

如果捕获的屏幕图像为 320x480,我怎样才能将 UIIMage 减小到 80x120 之类的值

if screen image is captured which is 320x480, how can I reduce that UIIMage to something like 80x120

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-残月青衣踏尘吟 2024-10-09 07:58:50

您可以通过两种不同的方式执行此操作:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文