如何在 Xamarin 中相当于 UIImage.withTintColor?

How do equivalent of UIImage.withTintColor, in Xamarin?

Apple 文档中 iOS 13.0+,UIImage class has method withTintColor

但是,Xamarin.iOS 等效项 UIImage class 缺少此方法。

有办法吗?

(我认为设置 UIImageView.TintColor 的替代技术对我没有帮助,因为我需要以编程方式将着色图像绘制到另一个位图中。)

Xamarin 将 withTintColor 方法重命名为 ApplyTintColor:

var tintedImage = srcImage.ApplyTintColor(myUIColor);