gpt4 book ai didi

ios - 为非方形UIImage添加边框

转载 作者:行者123 更新时间:2023-12-01 16:36:06 24 4
gpt4 key购买 nike

我尝试使用layer.borderColorCGContextSetStrokeColorWithColor在非方形png图像周围添加边框,但这导致图像周围的方形边框不在真实图像周围。

有没有办法做到这一点 ?

最佳答案

如果要舍入的ImageView。

UIImageView *imageView = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@""]];
imageView.layer.borderColor = [UIColor blackColor].CGColor; // Apply Color of your choice
imageView.layer.borderWidth = 2.0; // Apply width of your choice
imageView.layer.cornerRadius = 50; // Apply radius of your choice
imageView.clipsToBounds = YES;

关于ios - 为非方形UIImage添加边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28136230/

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