BitmapSizeOptions.FromWidth(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes an instance of BitmapSizeOptions that preserves the aspect ratio of the source bitmap and specifies an initial PixelWidth.
public:
static System::Windows::Media::Imaging::BitmapSizeOptions ^ FromWidth(int pixelWidth);
public static System.Windows.Media.Imaging.BitmapSizeOptions FromWidth (int pixelWidth);
static member FromWidth : int -> System.Windows.Media.Imaging.BitmapSizeOptions
Public Shared Function FromWidth (pixelWidth As Integer) As BitmapSizeOptions
Parameters
- pixelWidth
- Int32
The width, in pixels, of the resulting bitmap.
Returns
An instance of BitmapSizeOptions.
Exceptions
Occurs when pixelWidth
is less than zero.
Remarks
The returned BitmapSizeOptions will have its Rotation property set to Rotate0, its PreservesAspectRatio set to true
, its PixelHeight set to zero, and its PixelWidth set to the value of pixelWidth
.