Search found 4 matches

by via
Fri, 2023-12-29, 09:59
Forum: DCMTK - General
Topic: Questions on DCM File TAG Modification and LNK2019 Error
Replies: 7
Views: 9436

Re: Questions on DCM File TAG Modification and LNK2019 Error

Thanks for your reply, using EWM_dontUpdateMeta mode solves the problem. But I have a new question, if I want the DCM_ImplementationVersionName TAG of the meta information when I save the file to be set according to OFFIS_DTK_IMPLEMENTATION_VERSION_NAME in the dcmtk, is it possible to realize such a...
by via
Mon, 2023-12-25, 04:08
Forum: DCMTK - General
Topic: Questions on DCM File TAG Modification and LNK2019 Error
Replies: 7
Views: 9436

Re: Questions on DCM File TAG Modification and LNK2019 Error

Okay, I understand. I will link libiconv_d.lib after linking the lib of dcmtk. Thank you very much. I set the include path for libiconv in CMake to dcmtk-3.6.7-win32-support-MT-iconv-msvc-17.0\libiconv-1.16, but even then I can't compile it? The problem is not the include path, but the libraries, si...
by via
Tue, 2023-12-19, 03:38
Forum: DCMTK - General
Topic: Questions on DCM File TAG Modification and LNK2019 Error
Replies: 7
Views: 9436

Re: Questions on DCM File TAG Modification and LNK2019 Error

Hello, First question: If that TAG existed in the old file, it should normally remain in the new file as well. Also, I changed the DCM_SourceApplicationEntityTitle with metaInfo, but it still doesn't work. int EditDcm(const char* OldFile, const char* NewFile) { DcmFileFormat fileformat; if (!filefor...
by via
Mon, 2023-12-18, 09:41
Forum: DCMTK - General
Topic: Questions on DCM File TAG Modification and LNK2019 Error
Replies: 7
Views: 9436

Questions on DCM File TAG Modification and LNK2019 Error

I'm having some questions with the latest version(2023/10/27) of master branch on git: Question1: I need to change the TAG of a dcm file. I open the file using the "loadFile" interface, then I change the TAG through the "putAndInsertString" interface, and finally I save the file ...