ImageBrush issue Windows Phone 8.1

本文关键字:Phone Windows issue ImageBrush | 更新日期: 2023-09-27 18:22:22

我需要在windows phone通用应用程序中创建一个圆形图像。

为了创建这种图像,我使用了以下代码:

<Border CornerRadius="30" Height="60" Width="60">
    <Border.Background>
            <ImageBrush ImageSource="ms-appx:///Assets/round_image.png" />
    </Border.Background>
</Border>

但是这个代码对内存的影响很大,每个图像大约有4Mb。使用此代码可以解决问题,但图像不是圆形的。

<Border CornerRadius="30" Height="60" Width="60">
        <Image Source="ms-appx:///Assets/round_image.png" Stretch="Fill" />
</Border>

我需要显示20张图像,这两种方法的差异约为80mb。

这个内存问题有解决方案吗?

ImageBrush issue Windows Phone 8.1

尝试以下操作:

<Border CornerRadius="30" Height="60" Width="60">
    <Border.Background>
            <ImageBrush>
                <ImageBrush.ImageSource>
                    <BitmapImage
                        UriSource="ms-appx:///Assets/round_image.png" 
                        DecodePixelWidth="60"
                        DecodePixelHeight="60"
                        DecodePixelType="Logical"/>
                </ImageBrush.ImageSource>
            </ImageBrush>
    </Border.Background>
</Border>

问题可能是您的图像太大。这将把图像解码为实际的显示大小,如果原始图像太大,这将提高渲染性能。