gpt4 book ai didi

c# - 使用 WriteableBitmapEx 访问像素颜色时出现 AccessViolationException

转载 作者:太空宇宙 更新时间:2023-11-03 20:16:55 25 4
gpt4 key购买 nike

我正在使用 WriteableBitmapEx用于编辑使用 Windows 8 Pro 的平板电脑摄像头拍摄的图像的库。每次调用 GetPixel() 函数时,我都会收到 AccessViolationException,代码如下:

Windows.Media.Capture.MediaCapture captureMgr = new MediaCapture();
await captureMgr.InitializeAsync();

IRandomAccessStream memoryStream = new InMemoryRandomAccessStream();
await captureMgr.CapturePhotoToStreamAsync(imageProperties, memoryStream);
await memoryStream.FlushAsync();
memoryStream.Seek(0);

WriteableBitmap tmpImage = new WriteableBitmap(1, 1);
tmpImage.SetSource(memoryStream);
tmpImage.GetPixel(1, 1); // An AccessViolationException occurs.

我做错了什么?

最佳答案

尝试使用内置方法来创建您的 WriteableBitmap

WriteableBitmap tmpImage = await BitmapFactory.New(1, 1).FromStream(memoryStream);  
tmpImage.GetPixel(1, 1);

这应该确保您的图像在被访问之前已加载到 WriteableBitmap 中。

关于c# - 使用 WriteableBitmapEx 访问像素颜色时出现 AccessViolationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16109097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com