BitmapSizeOptions.FromWidthAndHeight(Int32, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 BitmapSizeOptions 的執行個體,這個執行個體不會保留原始點陣圖外觀比例。
public:
static System::Windows::Media::Imaging::BitmapSizeOptions ^ FromWidthAndHeight(int pixelWidth, int pixelHeight);
public static System.Windows.Media.Imaging.BitmapSizeOptions FromWidthAndHeight (int pixelWidth, int pixelHeight);
static member FromWidthAndHeight : int * int -> System.Windows.Media.Imaging.BitmapSizeOptions
Public Shared Function FromWidthAndHeight (pixelWidth As Integer, pixelHeight As Integer) As BitmapSizeOptions
參數
- pixelWidth
- Int32
產生的點陣圖寬度 (以像素為單位)。
- pixelHeight
- Int32
產生的點陣圖高度 (以像素為單位)。
傳回
BitmapSizeOptions 的新執行個體。
例外狀況
pixelHeight
小於零時發生。
備註
產生的點陣圖大小有效 pixelHeight
× pixelWidth
。
傳 BitmapSizeOptions 回的 屬性會 Rotation 設定為 Rotate0 、其 PreservesAspectRatio 設定為 false
、其 PixelHeight 設定為 的值 pixelHeight
,並將其 PixelWidth 設定為 的值 pixelWidth
。