gpt4 book ai didi

c# - 如何在 C# Windows 8.1 Store App 中翻转和旋转图像

转载 作者:行者123 更新时间:2023-11-30 16:15:37 25 4
gpt4 key购买 nike

我正在尝试在 C# 中翻转和旋转图像(适用于 Windows 应用商店应用程序)。如果我尝试翻转首先旋转某个角度(比如 x)的图像,它会变得很复杂。

我明白了

Image.RotateFlip

方法仅适用于桌面应用。

是否有任何现有的 API 可以在这种情况下提供帮助?任何帮助表示赞赏:)

最佳答案

如果您正在开发 Windows 应用商店应用程序(使用 C#),我假设您正在使用 XAML 作为您的 GUI。如果是这种情况并且您想执行轮换,那么这段标记应该可以做到。

对于旋转:

 <Image Source="/Assets/Logo.png" >
<Image.RenderTransform>
<RotateTransform Angle="90"/>
</Image.RenderTransform>
</Image>

对于翻转:

<Image Source="/Assets/Logo.png">
<Image.RenderTransform>
<ScaleTransform ScaleY="-1"/>
</Image.RenderTransform>
</Image>

如果你想执行动画,你可能想看看 this回答。

关于c# - 如何在 C# Windows 8.1 Store App 中翻转和旋转图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19328559/

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