Search found 8 matches

by Hafiz Rafeeq
Tue, 2017-11-28, 12:46
Forum: DCMTK - General
Topic: DCMTK server code
Replies: 10
Views: 8345

Re: DCMTK server code

Dear Michael,

Thanks for updating the library and thanks for the mention. You guys are really doing a great job maintaining such a wonderful tool. Hope this proves useful to people who use this tool in the future. :)

Best Regards
Hafiz
by Hafiz Rafeeq
Mon, 2017-11-20, 10:10
Forum: DCMTK - General
Topic: Error during build solution : VS 2015 + DCMTK 3.2.6
Replies: 15
Views: 11373

Re: Error during build solution : VS 2015 + DCMTK 3.2.6

Make sure that project properties->general->character set is set as "Use Multi-Byte Character Set" and not "Use Unicode Character Set"
Hope that helps
by Hafiz Rafeeq
Thu, 2017-10-26, 13:42
Forum: DCMTK - General
Topic: Extract private binary data from dicom file
Replies: 2
Views: 3003

Re: Extract private binary data from dicom file

i did the same thing a few days ago.. i don't know about command line tools though.

viewtopic.php?f=1&t=4643
by Hafiz Rafeeq
Thu, 2017-10-19, 07:07
Forum: DCMTK - General
Topic: DCMTK server code
Replies: 10
Views: 8345

Re: DCMTK server code

adding the following to the code helped solve it.

scp.addPresentationContext(UID_VerificationSOPClass, UID_LittleEndianImplicitTransferSyntax);

And thank you guys for always helping out. :)

Regards
Hafiz
by Hafiz Rafeeq
Thu, 2017-10-19, 04:48
Forum: DCMTK - General
Topic: DCMTK server code
Replies: 10
Views: 8345

Re: DCMTK server code

J. Riesmeier wrote:Looking at the Implementation Version Name, I would say DCMTK 3.6.2 :-)
Yes I am using DCMTK 3.6.2 :)
I think that the default profile is missing profile key.
by Hafiz Rafeeq
Wed, 2017-10-18, 13:48
Forum: DCMTK - General
Topic: DCMTK server code
Replies: 10
Views: 8345

DCMTK server code

I tried running a simple sever code DcmSCP scp; scp.setAETitle("SERVER"); scp.setPort(11112); scp.listen(); As far as i know, the builtin listen() function of DCMScp class comes with the capability to handle C-ECHO. But when i try echoscu -aec "SERVER" -aet "ECHO" 127.0...
by Hafiz Rafeeq
Wed, 2017-10-11, 06:25
Forum: DCMTK - General
Topic: putting a tag into a file
Replies: 2
Views: 2580

Re: putting a tag into a file

Hi Hi, you can use the related DcmItem methods, see details in the API documentation . If you inserted binary data (e.g. image data), you might try the findAndGetUint8Array() method . In general all the findAndGet...() methods list the DICOM data types (VRs) they work for. The dcmdata API start page...
by Hafiz Rafeeq
Tue, 2017-10-10, 11:03
Forum: DCMTK - General
Topic: putting a tag into a file
Replies: 2
Views: 2580

putting a tag into a file

I used MdfDatasetManager::modifyOrInsertFromFile to insert a file into a dicom tag. Now I want to retrieve the file from the tag. Is it possible to do it? Which class and function should I use for this?