gpt4 book ai didi

ios - 四舍五入 UIImage 并添加边框

转载 作者:IT王子 更新时间:2023-10-29 05:33:15 24 4
gpt4 key购买 nike

所以我想在 map 上显示一些图片作为注释。为此,我需要添加 MKAnnotationView 的图像属性。我使用的是常规图像,但我希望它们是圆形的并带有边框。所以我找到了一种对 UIImage 进行四舍五入的方法,并且我找到了向 UIImage 添加边框的方法,但似乎没有添加边框(我实际上没有在屏幕上显示图像,也许这就是问题所在?)。

我使用了这个答案 https://stackoverflow.com/a/29047372/4665643对边框稍作修改。即:

imageView.layer.borderWidth = 1.5
imageView.layer.borderColor = UIColor.whiteColor().CGColor
imageView.clipsToBounds = true

但是我在 map 上的图像没有任何边框。有什么建议吗?

最佳答案

imageView.layer.masksToBounds = true
imageView.layer.borderWidth = 1.5
imageView.layer.borderColor = UIColor.white.cgColor
imageView.layer.cornerRadius = imageView.bounds.width / 2

试试这个。

关于ios - 四舍五入 UIImage 并添加边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34984966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com