在UWP中,我有这张图片
<Image Source="{Binding Bitmap}" Stretch="Uniform"/>
我想在代码后面获取调整大小的位图 中的图像元素的大小,所以我有这个
Image img = ...;
var width = img.Width; // this gives size of Image element not the bitmap resized
// inside the Image.
因此,原始位图的大小可以为1920x1080,但图像元素的大小为300x200,因此给定Stretch=Uniform
,其内部的位图的大小为300x112.5。我想得到300x112.5
答案 0 :(得分:1)
使用ActualWidth / ActualHeight属性。