如何获取调整后图像的大小?
How to get size of resized image?
在 UWP 中我有这张图片
<Image Source="{Binding Bitmap}" Stretch="Uniform"/>
我想在后面的代码中获取调整大小后的位图的大小inside图像元素,所以我有这个
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
使用 ActualWidth/ActualHeight 属性。
在 UWP 中我有这张图片
<Image Source="{Binding Bitmap}" Stretch="Uniform"/>
我想在后面的代码中获取调整大小后的位图的大小inside图像元素,所以我有这个
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
使用 ActualWidth/ActualHeight 属性。