我正在测试WP8应用程序,并且它的图像查看器可以显示很多图像,我发现该应用程序的内存消耗正在增加,并且想了解如何解决它。

我已经从网络上阅读了一些文章,但是这些文章提供的解决方案不适用于我的应用程序,请阅读下面的历史记录。

首先,我找到了文章“Image Tips for Windows Phone 7”并下载其示例以进行干净的图像缓存测试,它与 1 image 一起使用。

然后出于测试目的,我将该应用程序内部编译为 15个脱机图像,并设置为“内容”,请从here下载测试应用程序。

我的测试步骤是:

(1) Launch app
(2) Go to Image Caching page
(3) Enable checkbox "Avoid Image Caching"
(4) Continuously tapping button Show/Clear
(5) Keep watching the memory status textblock at the bottom

当我测试我的应用程序时,内存正在增加,例如 16.02MB => Show(19.32MB)=>清除( 16.15MB )=> Show(20.18MB)=>清除( 17.03MB ) ...等等
而且,即使离开缓存页面并再次进入缓存页面,内存也不会被释放。
看来文章“Image Tips for Windows Phone 7”的解决方案仅适用于 1张图片

这是解决方案的xaml和“Image Tips for Windows Phone 7”背后的代码。

[Caching.xaml]
        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
            <StackPanel Orientation="Horizontal" VerticalAlignment="Top">
                <ToggleButton Content="Show" Width="150" Checked="ShowImageClicked" Unchecked="ClearImageClicked"/>
                <CheckBox x:Name="cbAvoidCache" Content="Avoid Image Caching"/>
            </StackPanel>
            <Image x:Name="img" Grid.Row="2" Width="256" Height="192"/>
            <TextBlock x:Name="tbMemory" Grid.Row="2" Text="Memory: " VerticalAlignment="Bottom" Style="{StaticResource PhoneTextLargeStyle}"/>
        </Grid>

[Caching.xaml.cs]
public partial class Caching : PhoneApplicationPage
{
    public Caching()
    {
        InitializeComponent();

        DispatcherTimer timer = new DispatcherTimer();
        timer.Interval = TimeSpan.FromMilliseconds(500);
        timer.Start();
        timer.Tick += delegate
        {
            GC.Collect();
            tbMemory.Text = string.Format("Memory: {0} bytes", DeviceExtendedProperties.GetValue("ApplicationCurrentMemoryUsage"));
        };
    }

    private int nIndex = 1;
    BitmapImage bitmapImageFromUri = new BitmapImage();
    private void ShowImageClicked(object sender, RoutedEventArgs e)
    {
        string strImage = string.Format("../ImagesAsContent/{0:D2}.jpg", nIndex);
        bitmapImageFromUri.UriSource = new Uri(strImage, UriKind.Relative);
        img.Source = bitmapImageFromUri;

        nIndex++;
        if (nIndex > 15)
        {
            nIndex = 1;
        }

        (sender as ToggleButton).Content = "Clear";
    }

    private void ClearImageClicked(object sender, RoutedEventArgs e)
    {
        if (cbAvoidCache.IsChecked == true)
        {
            // set the UriSource to null in order to delete the image cache
            BitmapImage bitmapImageFromUri = img.Source as BitmapImage;
            bitmapImageFromUri.UriSource = null;
        }
        img.Source = null;
        (sender as ToggleButton).Content = "Show";
    }
}

我还尝试搜索任何其他解决方案,一些测试结果如下。

(1)文章“[wpdev] Memory leak with BitmapImage”:它提供2种解决方案,一种是DisposeImage API,另一种是将BitmapImage源设置为null,如下所示。文章还告诉我们,事件处理程序的附加/删除必须非常小心,但是我的测试应用程序在缓存页面中没有事件处理程序。

[DisposeImage]
private void DisposeImage(BitmapImage image)
{
    if (image != null)
    {
        try
        {
            using (var ms = new MemoryStream(new byte[] { 0x0 }))
            {
                image.SetSource(ms);
            }
        }
        catch (Exception)
        {
        }
    }
}

[设置为空]
BitmapImage bitmapImage = image.Source as BitmapImage;
bitmapImage.UriSource = null;
image.Source = null;

(2)文章“Windows phone: listbox with images out-of-memory”:它提供的API“DisposeImage”与(1)的区别不大,如下所示,但这也不起作用,我仍然遇到内存增加的症状。
public static void DisposeImage(BitmapImage image)
{
    Uri uri= new Uri("oneXone.png", UriKind.Relative);
    StreamResourceInfo sr=Application.GetResourceStream(uri);
    try
    {
     using (Stream stream=sr.Stream)
     {
      image.DecodePixelWidth=1; //This is essential!
      image.SetSource(stream);
     }
    }
    catch
    {}
}

(3)文章“Cannot find the memory leak”:它提供了与上述相同的2个解决方案,还提到了无法隔离存储镜像的问题,但是我的测试应用程序的镜像来自隔离存储。

(4)我还尝试了1000张图像,测试结果是当应用程序顺序显示190张图像时,应用程序崩溃,请引用下面的Windows Phone应用程序分析图形以获取内存。

最后,感谢您耐心阅读我的问题和历史记录,为此我一直在努力寻找解决方案很多天了。
如果您有任何线索或解决方案,请告诉我。

谢谢。

最佳答案

我当时正在处理相同的问题,但最终我认为实际上我找到了一种解决方法,我不是专业程序员,但这是我的解决方案:

  public Task ReleaseSingleImageMemoryTask(MyImage myImage, object control)
    {
        Pivot myPivot = control as Pivot;
        Task t = Task.Factory.StartNew(() =>
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                if (myImage.img.UriSource != null)
                {
                    myImage.img.UriSource = null;
                    DisposeImage(myImage.img);
                }
                PivotItem it = (PivotItem)(myPivot.ItemContainerGenerator.ContainerFromIndex(myImage.number % 10));
                Image img = FindFirstElementInVisualTree<Image>(it);
                if (img != null)
                {
                    img.Source = null;
                    GC.Collect();
                }
            });
            myImage.released = true;
        });
        return t;
    }


private T FindFirstElementInVisualTree<T>(DependencyObject parentElement) where T : DependencyObject
    {
        var count = VisualTreeHelper.GetChildrenCount(parentElement);
        if (count == 0)
            return null;

        for (int i = 0; i < count; i++)
        {
            var child = VisualTreeHelper.GetChild(parentElement, i);

            if (child != null && child is T)
            {
                return (T)child;
            }
            else
            {
                var result = FindFirstElementInVisualTree<T>(child);
                if (result != null)
                    return result;
            }
        }
        return null;
    }

    private void DisposeImage(BitmapImage img)
    {
        if (img != null)
        {
            try
            {
                using (var ms = new MemoryStream(new byte[] { 0x0 }))
                {
                    img = new BitmapImage();
                    img.SetSource(ms);
                }
            }
            catch (Exception e)
            {
                System.Diagnostics.Debug.WriteLine("ImageDispose FAILED " + e.Message);
            }
        }
    }

希望这个帮助:)

关于c# - Windows Phone 8中BitmapImage/Image控件的内存消耗,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18127027/

10-17 00:55