UIImageView scaling/interpolation(UIImageView 缩放/插值)
问题描述
我有一个我正在开发的小型 iPhone 应用程序,我正在显示一个带有 UIImageView 的图像.我正在使用 Aspect Fit 模式将其放大.我想让图像在没有插值/平滑的情况下放大(我希望它看起来像素化).有什么办法可以改变这种行为吗?
I have a small IPhone app that I am working on and I am displaying an image with a UIImageView. I am scaling it up using the Aspect Fit mode. I would like to have the image scale up with no interpolation/smoothing (I want it to look pixellated). Is there any way I can change this behavior?
一个更普遍的问题是我可以实现自己的缩放算法,还是有其他可以选择的内置算法?
A little more general question would be can I implement my own scaling algorithm, or are there other built in ones that I can select?
推荐答案
您需要将视图层的 magnificationFilter 属性设置为最近邻过滤器:
You would need to set the magnificationFilter property on the view's layer to the nearest neighbour filter:
[[view layer] setMagnificationFilter:kCAFilterNearest]
这篇关于UIImageView 缩放/插值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIImageView 缩放/插值
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01