Rotation Enumeración

Definición

Especifica la rotación que se aplicará a una imagen de mapa de bits.

public enum class Rotation
public enum Rotation
type Rotation = 
Public Enum Rotation
Herencia
Rotation

Campos

Rotate0 0

No se gira el mapa de bits. Este es el valor predeterminado.

Rotate180 2

Gira el mapa de bits en el sentido de las agujas del reloj 180 grados.

Rotate270 3

Gira el mapa de bits en el sentido de las agujas del reloj 270 grados.

Rotate90 1

Gira el mapa de bits en el sentido de las agujas del reloj 90 grados.

Ejemplos

En el ejemplo siguiente se muestra cómo aplicar una rotación a una imagen de mapa de bits.

// 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)

Comentarios

Se admiten solo incrementos de 90 grados.

Se aplica a

Consulte también