Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 C#/UWP 应用程序,我想知道是否有一种简单的方法可以从 Win2D 中的方形图像创建/绘制圆形图像?
在 XAML 中,我可以简单地这样做:
<Ellipse> <Ellipse.Fill> <ImageBrush ImageSource="myImage.jpg" Stretch="Uniform"/> </Ellipse.Fill> </Ellipse>
如何使用 Win2D 获得相同的结果?