gpt4 book ai didi

c# - WriteableBitmapEx Windows Phone dll 的

转载 作者:行者123 更新时间:2023-11-30 22:25:24 32 4
gpt4 key购买 nike

我目前正在尝试使用 WriteableBitmapEx 叠加两个位图使用文档中的此方法:

writeableBmp.Blit(new Point(10, 10), bitmap, sourceRect, 
Colors.White,WriteableBitmapExtensions.BlendMode.Additive);

我通过 NuGet 安装了包,它添加了 ...WinPhone.dll 和 WinPhoneXnaDependant.dll,这似乎是导致问题的原因。这是我目前正在编写的代码:

WriteableBitmap result = new WriteableBitmap(results, null);
WriteableBitmap overlay = new WriteableBitmap(0, 0).FromResource("Images/VizageOverlay.png");
var cropped = result.Crop(96, 0, 480, 728);
cropped.Blit(new Point(0, 0), overlay, new Point(0,0),
WriteableBitmapExtensions.BlendMode.Additive);

但是,错误指出 WriteableBitmapExtensions.BlendMode.Additive *存在于* 上述 dll 中。我已经尝试摆脱两者并保留一个但我需要它出现在上面的代码中。

有什么想法吗?

最佳答案

如果您不创建 XNA 项目,请删除对 WinPhoneXnaDependant 的引用。

如果问题仍然存在,请联系作者 René Schulte on Twitter .

关于c# - WriteableBitmapEx Windows Phone dll 的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12331641/

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