Rotation Énumération
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Spécifie la rotation à appliquer à une image bitmap.
public enum class Rotation
public enum Rotation
type Rotation =
Public Enum Rotation
- Héritage
Champs
Rotate0 | 0 | L’image bitmap ne pivote pas. Valeur par défaut. |
Rotate180 | 2 | Faire pivoter la bitmap de 180 degrés dans le sens des aiguilles d’une montre. |
Rotate270 | 3 | Faire pivoter la bitmap de 270 degrés dans le sens des aiguilles d’une montre. |
Rotate90 | 1 | Faire pivoter la bitmap de 90 degrés dans le sens des aiguilles d’une montre. |
Exemples
L’exemple suivant montre comment appliquer une rotation à une image bitmap.
// 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)
Remarques
Seuls les incréments de 90 degrés sont pris en charge.