0
Mycodeロードマップ:ビットマップは成功しましたが、幅と高さは0ですか?リソースから
Uri _uri = new Uri("e.jpg", UriKind.RelativeOrAbsolute);
BitmapImage bmp = new BitmapImage(_uri);
int iW = bmp.PixelWidth;
int iH = bmp.PixelHeight;
BMPは成功したロードされているが、iWをおよびIHの両方が、私はなぜ知らない0ですか?私はそれをどのように修正するか教えていただけますか?
あなたは何を意味するのですか? PixelWidthとPixelHeighは、BitmapSourceクラスのプロパティです。 public int PixelHeight {get; } public int PixelWidth {get; } – user1328044