- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 HBITMAP 转换为 IWICBitmap,但我遇到了很多麻烦。我找到了函数:
CreateBitmapFromHBITMAP();
但我无法让它工作。以下是我的使用方法:
void camera_avtcam_ex_t::GrabAsyncFrame(ULONG frameId, IWICImagingFactory* pWicFactory, IWICBitmap** outputBitmap, bool* pAbort )
{
QueueCamFrame();
HBITMAP transferbitmap;
GetFeatureAndRunAcquisitionStart(transferbitmap); //returns transferbitmap
//as a valid HBITMAP
//This HBITMAP works, I can save it to a file and/or print
//it to the screen and the image is displayed properly
pWicFactory->CreateBitmapFromHBITMAP(transferbitmap, NULL, WICBitmapUseAlpha, outputBitmap);
}
执行函数中的最后一行代码会导致访问冲突错误。
就在这个 GrabAsyncFrame()
函数被调用之前,我创建了它需要的参数,如下所示:
ULONG frameId = 0;
IWICImagingFactory* pWicFactory = NULL;
IWICBitmap** outputBitmap = new IWICBitmap*;
bool* pAbort = NULL;
theCamera.GrabAsyncFrame(frameId, pWicFactory, outputBitmap, pAbort);
我有点怀疑将 pWicFactory 设置为 NULL,然后很快使用它。但我想不出任何其他方法来初始化 IWICImagingFactory 对象。
所以我的问题是:下面发布了新问题。
编辑:如果我尝试使用 new
来初始化 pWicFactory,我会收到一条消息说
Error: object of abstract class type "IWICImagingFactory" is not allowed.
编辑2:
在确认将 pWicFactory 设置为 NULL 是问题所在之后,我现在需要知道如何正确初始化 IWICImagingFactory 对象指针。这就是我现在正在使用的:
ULONG frameId = 0;
IWICImagingFactory* pWicFactory = NULL;
/*new code*/CoCreateInstance(CLSID_WICImagingFactory, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&pWicFactory));
IWICBitmap** outputBitmap = new IWICBitmap*;
bool* pAbort = NULL;
theCamera.GrabAsyncFrame(frameId, pWicFactory, outputBitmap, pAbort);
问题: 如何正确初始化 IWICImagingFactory 对象指针?
最佳答案
这个声明
IWICImagingFactory* pWicFactory = NULL;
是罪魁祸首。
您将一个 NULL
指针传递给该函数,然后您尝试使用该函数,导致错误。
关于c++ - 从 HBITMAP 转换为 IWICBitmap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15433318/
我正在尝试将 HBITMAP 转换为 IWICBitmap,但我遇到了很多麻烦。我找到了函数: CreateBitmapFromHBITMAP(); 但我无法让它工作。以下是我的使用方法: void
ID2D1Bitmap 和 IWicBitmap 有什么区别我有原始内存数据,我想创建一个位图 最佳答案 WIC 位图表示系统内存中的图像,可以在 wide range of formats 中(JP
我认为这个主题说明了一切。但在一些细节上,我正在加载、操作、然后显示位图,并且是在 GDI 中完成的。现在我想增加一些速度,因为它会重复发生。 许多年前,我将 DirectX 用于其他用途,但我所看到
我正在用 C++ 编写适用于 Windows 8 的 Metro 风格应用程序。在那,我在我的代码中从一个图像文件创建一个 IWICBitmap 实例。我将自己处理此 IWICBitmap 上的像素。
我可以使用以下代码为 IWICBitmap 创建一个 ID2D1RenderTarget... D2D1_FACTORY_OPTIONS options; ZeroMemory(&op
我是一名优秀的程序员,十分优秀!