BitmapSizeOptions.FromRotation(Rotation) Method

Definition

Initializes an instance of BitmapSizeOptions that preserves the aspect ratio of the source bitmap and specifies an initial Rotation to apply.

public:
 static System::Windows::Media::Imaging::BitmapSizeOptions ^ FromRotation(System::Windows::Media::Imaging::Rotation rotation);
public static System.Windows.Media.Imaging.BitmapSizeOptions FromRotation (System.Windows.Media.Imaging.Rotation rotation);
static member FromRotation : System.Windows.Media.Imaging.Rotation -> System.Windows.Media.Imaging.BitmapSizeOptions
Public Shared Function FromRotation (rotation As Rotation) As BitmapSizeOptions

Parameters

rotation
Rotation

The initial rotation value to apply. Only 90 degree increments are supported.

Returns

A new instance of BitmapSizeOptions.

Remarks

The resulting bitmap maintains its original aspect ratio and sizing.

The returned BitmapSizeOptions will have its Rotation property set to the value of rotation, its PreservesAspectRatio set to true, its PixelHeight set to 0, and its PixelWidth set to 0.

Applies to

See also