BitmapImage.DecodePixelWidth プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
イメージがデコードされる幅 (ピクセル単位) を取得または設定します。
public:
property int DecodePixelWidth { int get(); void set(int value); };
public int DecodePixelWidth { get; set; }
member this.DecodePixelWidth : int with get, set
Public Property DecodePixelWidth As Integer
プロパティ値
イメージがデコードされる幅 (ピクセル単位)。 既定値は 0 です。
例
次のコード例では、コードを使用してプロパティを設定する DecodePixelWidth 方法を示します。
// 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)
注釈
また、設定されている場合 DecodePixelHeight 、ビットマップの縦横比は無視されます。 設定されていない場合 DecodePixelHeight 、縦横比は変わりません。
JPEG およびポータブル ネットワーク グラフィックス (PNG) コーデックは、指定したサイズに画像をネイティブにデコードします。他のコーデックは、元のサイズでイメージをデコードし、イメージを目的のサイズにスケーリングします。
依存プロパティ情報
識別子フィールド | DecodePixelWidthProperty |
に設定されたメタデータ プロパティ true |
なし |