由于GUID的原因,这里在使用时需要注意一下:
举两个使用示例:
一:在简单对话框程序中直接使用的详细步骤
1、在对话框头文件中 添加 #include <imaging.h>
2、为对话框添加成员变量
IImagingFactory * m_pImagingFactory;
IImage * m_pImage;
3、在对话框源文件中 添加 #include <InitGuid.h>
二:在简单对话框程序中间接使用的详细步骤
1、添加一个头文件 convert.h 并添加 #include <imaging.h>
2、添加convert.cpp 并添加
#include "stdafx.h"
#include <InitGuid.h>
#include "convert.h"
3、在对话框头文件中 添加 #include "convert.h"
4、在对话框源文件中 添加 #include "aaaDlg.h" 一般由向导自动添加
在使用 IImagingFactory 和 IImage 时 的注意点,布布扣,bubuko.com
在使用 IImagingFactory 和 IImage 时 的注意点
原文地址:http://qianqianquege.blog.51cto.com/8004200/1413983