64位Win10 VS2013 编译安装DCMTK3.6.2 32位
程序员文章站
2022-07-09 15:28:15
...
参考文档:
1. 【最新snapshot】DCMTK3.6.1(MD支持库)安装说明
2. WIN7下 一个 error MSB3073 的解决办法
3. DCMTK(MD版)编译和安装+VS2015
4. error C2678: 二进制“+”: 没有找到接受“const wchar_t [41]”类型的左操作数的运算符
安装过程基本类似.
不同点:
a. 环境和DCMTK的版本不同.
b. _d.lib的名字和数量不同.
c. include文件夹数量不同, 与系统include合并时没有覆盖原来的.
d. 在最后的INSTALL阶段, 碰到了error MSB3073 错误, 使用管理员身份运行VS2013, 再做编译生成即可.
生成信息:
默认安装位置: C:\Program Files (x86)\DCMTK
测试小程序:
#include"dcmtk/config/osconfig.h"
#include"dcmtk/dcmdata/dctk.h"
#include<iostream>
using namespace std;
int main()
{
DcmFileFormat fileformat;
OFCondition oc = fileformat.loadFile("111.dcm");
if (oc.good()) {
OFString patientName;
if (fileformat.getDataset()->findAndGetOFString(DCM_PatientName, patientName).good())
{
cout << "Patient Name:" << patientName.data() << endl;
}
}
system("pause");
return 0;
}
Qt(编译器是VS2013 32bit)一直提示找不到头文件:
换VS2013却可以了: