2
ビットマップを時計回りに90度回転させるにはどうすればよいですか?私は次のコードを使ってストレージから画像を読み込んでいます:ビットマップをコードで回転するC#UWP
public async void GetImage()
{
string filename = code + ".jpg";
Windows.Storage.StorageFile sampleFile =
await Windows.Storage.KnownFolders.CameraRoll.GetFileAsync(filename);
BitmapImage img = new BitmapImage();
img = await LoadImage(sampleFile);
imageMain.Source = img;
}
private static async Task<BitmapImage> LoadImage(StorageFile file)
{
BitmapImage bitmapImage = new BitmapImage();
FileRandomAccessStream stream = (FileRandomAccessStream)await file.OpenAsync(FileAccessMode.Read);
bitmapImage.SetSource(stream);
return bitmapImage;
}
そして私は画像を回転させたいと思います。 bitmapImage.RotateはUWPでは動作しません。どのような解決策ですか?
[RotateTransformクラス](https://msdn.microsoft.com/library/windows/apps/br242932) – IInspectable