gpt4 book ai didi

c# - Iphone 移动应用程序中的圆形图像范围 (Xamarin.Ios/C#)

转载 作者:行者123 更新时间:2023-11-28 17:31:30 25 4
gpt4 key购买 nike

我似乎无法找到如何获取圆形图像。无论是从图库中选择的照片,id 都喜欢它以适应屏幕上显示的范围,并且图片在应用程序上呈圆形,而不是默认的矩形或方形照片。 instagram twitter facebook 和 linkedIN 等就是这样做的。有人能给我指出正确的方向,让我看看插件、我可以调用的方法的名称,或者可以帮助我完成此任务的链接或代码吗

最佳答案

您可以尝试使用以下代码:

  UIImageView imageView = new UIImageView(new CGRect( 10,10,200,200 ));// Make sure the width and height are equal
imageView.Image =UIImage.FromBundle(" xxx.png ");
imageView.Layer.MasksToBounds = true; //It is important
imageView.Layer.CornerRadius = 100; //Set the value to half of the width(height)
View.AddSubview(imageView);

关于c# - Iphone 移动应用程序中的圆形图像范围 (Xamarin.Ios/C#),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52210562/

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