我有一个使用 RenderTargetBitmap 的 3.5 WPF 应用程序。
它像一只大熊一样吃掉记忆。
3.5 中的一个已知问题是 RenderTargetBitmap.Render 存在内存问题。
已经找到了一些解决方案,但我没有帮助。 https://connect.microsoft.com/VisualStudio/feedback/details/489723/rendertargetbitmap-render-method-causes-a-memory-leak
程序占用太多内存 还有更多...
有没有更多的想法来解决它......
static Image Method(FrameworkElement e, int width, int height)
{
const int dpi = 192;
e.Width = width;
e.Height = height;
e.Arrange(new Rect(0, 0, width, height));
e.UpdateLayout();
if(element is Graph)
(element as Graph).UpdateComponents();
var bitmap = new RenderTargetBitmap((int)(width*dpi/96.0),
(int)(height*dpi/96.0),
dpi,
dpi,
PixelFormats.Pbgra32);
bitmap.Render(element);
var encoder = new PngBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bitmap));
using (var stream = new MemoryStream())
{
encoder.Save(stream);
element.Clip = null;
Dispose(element);
bitmap.Freeze();
DisposeRender(bitmap);
bitmap.Clear();
GC.Collect();
GC.WaitForPendingFinalizers();
return System.Drawing.Image.FromStream(stream);
}
}
public static void Dispose(FrameworkElement element)
{
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
}
public static void DisposeRender(RenderTargetBitmap bitmap)
{
if (bitmap != null) bitmap.Clear();
bitmap = null;
GC.Collect();
GC.WaitForPendingFinalizers();
}