我有一个带有Image
控件的 WPF 应用程序。我正在使用WriteableBitmap
to update Image.source
,但我不明白为什么我会看到这种奇怪的行为:我的图像分成两部分,顶部以相当慢的速度缓慢移动到循环底部。
我不明白为什么会这样。顶部和底部实际上是同一个框架,因为我可以看到它们的实时更新。
我的代码:
public MainWindow()
{
InitializeComponent();
InitVideo();
image.Source = frame;
}
private void InitVideo
{
/// .... some other init stuff ...
frame = new WriteableBitmap(width, height, 96, 96, PixelFormats.Rgb24, null);
rgbch = new byte[stride * height];
dataProc = new System.Threading.Thread(ReadData);
dataProc.Start();
}
// in separate thread
private void ReadData()
{
while (rxVideo)
{
for (int i = 0; i < rgbch.Length; i += stride)
{
pipe.Read(rgbch, i, stride);
}
Application.Current.Dispatcher.Invoke(() =>
{
frame.Lock();
frame.WritePixels(new Int32Rect(0, 0, width, height), rgbch, stride, 0);
frame.Unlock();
});
}
我尝试使用frame.dispatcher.invoke
-> 相同的结果。尝试Marshal.Copy
->相同的结果..