I can use RenderTargetBitmap to get the visual's snapshot, but
RenderTargetBitmap use software render only. So it is very slow. When I
get a snapshot of a complicate visual element, it may cost 0.7s. Does
anyone has the faster way to do this
System.Windows.Media.Imaging.RenderTargetBitmap bitmapImage = new System.Windows.Media.Imaging.RenderTargetBitmap(
(int)(width),
(int)(height),
96, 96, PixelFormats.Default);
bitmapImage.Render(this); // code of this line will cost about 0.7s

How to get the visual's snapshot in wpf? Do not use RenderTargetBitmap
R.Tutus
Sheva