Rotation 列挙型

定義

ビットマップ イメージに適用する回転を指定します。

public enum class Rotation
public enum Rotation
type Rotation = 
Public Enum Rotation
継承
Rotation

フィールド

Rotate0 0

ビットマップは回転していません。 これが既定値です。

Rotate180 2

ビットマップが時計回りに 180°回転します。

Rotate270 3

ビットマップが時計回りに 270°回転します。

Rotate90 1

ビットマップが時計回りに 90°回転します。

次の例では、ビットマップ イメージに回転を適用する方法を示します。

// Define a BitmapImage.
Image myImage = new Image();
BitmapImage bi = new BitmapImage();

// Begin initialization.
bi.BeginInit();

// Set properties.
bi.CacheOption = BitmapCacheOption.OnDemand;
bi.CreateOptions = BitmapCreateOptions.DelayCreation;
bi.DecodePixelHeight = 125;
bi.DecodePixelWidth = 125;
bi.Rotation = Rotation.Rotate90;
MessageBox.Show(bi.IsDownloading.ToString());
bi.UriSource = new Uri("smiley.png", UriKind.Relative);

// End initialization.
bi.EndInit();
myImage.Source = bi;
myImage.Stretch = Stretch.None;
myImage.Margin = new Thickness(5);
' Define a BitmapImage.
Dim myImage As New Image()
Dim bi As New BitmapImage()

' Begin initialization.
bi.BeginInit()

' Set properties.
bi.CacheOption = BitmapCacheOption.OnDemand
bi.CreateOptions = BitmapCreateOptions.DelayCreation
bi.DecodePixelHeight = 125
bi.DecodePixelWidth = 125
bi.Rotation = Rotation.Rotate90
MessageBox.Show(bi.IsDownloading.ToString())
bi.UriSource = New Uri("smiley.png", UriKind.Relative)

' End initialization.
bi.EndInit()
myImage.Source = bi
myImage.Stretch = Stretch.None
myImage.Margin = New Thickness(5)

注釈

サポートされているのは 90 度単位のインクリメントだけです。

適用対象

こちらもご覧ください