菜鸟教程小白 发表于 2022-12-12 13:27:18

ios - 如何以编程方式调整 UIImage 的大小以设置 scaleAspectFill 内容模式?


                                            <p><p>我找到了几个例子来调整图像的大小,在给定特定 <code>CGRect</code> 的情况下保持其纵横比,或者例如只有 <a href="https://stackoverflow.com/questions/7645454/resize-uiimage-by-keeping-aspect-ratio-and-width" rel="noreferrer noopener nofollow">this post</a> 中的宽度.但是这些示例总是会创建一个看起来像 <code>scaleAspectFit</code> 内容模式的新图像。我想在 <code>scaleAspectFill</code> 内容模式下获得类似的内容,但我没有找到任何示例。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我已将它用于我的一个项目。</p>

<pre><code>extension UIImage
{
    func imageWithSize(size:CGSize) -&gt; UIImage
    {
      var scaledImageRect = CGRect.zero

      let aspectWidth:CGFloat = size.width / self.size.width
      let aspectHeight:CGFloat = size.height / self.size.height

      //max - scaleAspectFill | min - scaleAspectFit
      let aspectRatio:CGFloat = max(aspectWidth, aspectHeight)

      scaledImageRect.size.width = self.size.width * aspectRatio
      scaledImageRect.size.height = self.size.height * aspectRatio
      scaledImageRect.origin.x = (size.width - scaledImageRect.size.width) / 2.0
      scaledImageRect.origin.y = (size.height - scaledImageRect.size.height) / 2.0

      UIGraphicsBeginImageContextWithOptions(size, false, 0)

      self.draw(in: scaledImageRect)

      let scaledImage = UIGraphicsGetImageFromCurrentImageContext()
      UIGraphicsEndImageContext()

      return scaledImage!
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何以编程方式调整 UIImage 的大小以设置 scaleAspectFill 内容模式?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/44177720/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/44177720/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何以编程方式调整 UIImage 的大小以设置 scaleAspectFill 内容模式?