Search found 4 matches

by yohan
Tue, 2010-02-09, 17:04
Forum: DCMTK - Installation
Topic: Compilation DCMTK, visual studio and Qt
Replies: 2
Views: 8480

Thanks for this fast answer. Faq 26 helped me to solve this problem.
Finally, the problem was solved by setting the compiler on MultiThread, adding two libraries (netapi32.lib and ws2832.lib) and ignore only the default library msvcrt.lib
by yohan
Tue, 2010-02-09, 12:01
Forum: DCMTK - Installation
Topic: Compilation DCMTK, visual studio and Qt
Replies: 2
Views: 8480

Compilation DCMTK, visual studio and Qt

Hello, I try to compile my application with visual studio(VS) 2008 which use Qt and DCMTK libraries. What I did: - I compiled DCMTK using cmake and then VS - I compiled Qt sources with VS and installed the qt add-in for VS in order to import my Qt project (the application was first developed under l...
by yohan
Fri, 2009-02-27, 18:21
Forum: DCMTK - General
Topic: Failed to get dataset from DmFileFormat
Replies: 2
Views: 3368

In fact, I forgot to link the dicon.dic from the lib.

Thanks a lot.
by yohan
Fri, 2009-02-27, 14:10
Forum: DCMTK - General
Topic: Failed to get dataset from DmFileFormat
Replies: 2
Views: 3368

Failed to get dataset from DmFileFormat

Hello, I’m new user of DCMTK. I try to read a file beginning with the following code: bool DicomIO::read( const char* fileName) { DcmFileFormat fileFormat; OFCondition status = fileFormat.loadFile( fileName ); if ( status.bad() ) { return false; } DcmDataset* dataset = fileFormat.getDataset(); … } T...