UIImage ScaleToFit disable antialias?

前端 未结 2 1793
我在风中等你
我在风中等你 2020-12-13 15:53

\"antialiasing

is there any way to disable antialiasing when scaling images in uiimag

相关标签:
2条回答
  • 2020-12-13 16:30

    I was working with SpriteKit in Xcode 11 (Swift 5) and also got this problem. To solve it (i.e. disable anti-aliasing) i did the following:

    texture?.filteringMode = SKTextureFilteringMode.nearest
    
    0 讨论(0)
  • 2020-12-13 16:37

    Add the QuartzCore framework to your project, then set the image view’s layer’s magnificationFilter property to kCAFilterNearest.

    0 讨论(0)
提交回复
热议问题