如何更新TransformedBitmap的内容?

时间:2018-09-05 16:54:45

标签: wpf writeablebitmap

我在WPF应用程序中使用TransformedBitmap来拉伸WriteableBitmap。我需要更新WriteableBitmap,然后在用户移动滑块控件时对其进行转换。目前,每次操纵滑块时,我都会实例化一个新的TransformedBitmap:

TransformedBitmap transformedBitmap = new TransformedBitmap(myWriteableBitmap, myTransform);

更新WriteableBitmap很快,但是每次创建一个新的TransformedBitmap都会影响性能。谁能提出一些改进建议?

0 个答案:

没有答案