Search found 17 matches

by Soumya Basheer
Wed, 2018-10-24, 12:00
Forum: DCMTK - General
Topic: Trasport Layer security while using DcmScppool
Replies: 1
Views: 1689

Trasport Layer security while using DcmScppool

I am developing a server app using DcmScpPool. I need to give transport layer scecurity for every dicom communication. Upon checking the listen function inside scppool does not implented it after iitializing the network. I tried to ovverride the listen function but will not get some private variable...
by Soumya Basheer
Tue, 2018-09-11, 06:19
Forum: DCMTK - General
Topic: Delete and notify command
Replies: 4
Views: 3108

Re: Delete and notify command

Hi All, Is there anything Dcmtk provide which can allow PACS client user to delete study in PACS from client application? The situation is: PACS Client is sending sereis to a mini PACS and later it wants to delete that study from PACS. Is there is any command available for this? Also if the series i...
by Soumya Basheer
Fri, 2018-09-07, 07:19
Forum: DCMTK - General
Topic: Delete and notify command
Replies: 4
Views: 3108

Delete and notify command

Is there is any delete command that dcmtk have for deleting an entry from server?
also is there is any notification command for notifying that a file is editing in client side and to lock it in server?
by Soumya Basheer
Thu, 2018-09-06, 10:21
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

I have loaded a file and converted to japanese using icu if (fileformat.loadFile("E:\\mod\\A00268282.dcm").good()) { DcmDataset *dataset1 = fileformat.getDataset(); OFCondition status1 = dataset1->convertToUTF8(); dataset1->findAndGetOFString(DCM_PatientName, reqpatientName); } the patient...
by Soumya Basheer
Thu, 2018-09-06, 06:41
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

I need to give ISO 2022 IR 87 (Kanji- extended). whether it will support the dcmtk.I am getting error as not supported.

In ICU I could convert using ISO_IR 13. but in iconv I am getting error as illegal byte sequence. Any issues in my understandings?
by Soumya Basheer
Wed, 2018-09-05, 11:10
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Could you please provide me which all character sets that i can give to iconv library. While I gave ISO 2022 IR 87 it is giving error as "Cannot select source character set: SpecificCharacterSet (0008,0005) value 'ISO 2022 IR 87' not supported" I need to convert the kanji script in japanes...
by Soumya Basheer
Wed, 2018-09-05, 07:47
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Soumya Basheer wrote:Yes. I have checked by rebuilding also,but not getting.
I could do it using iconv not using icu..Thank you
by Soumya Basheer
Wed, 2018-09-05, 07:46
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Which will be better to use ICU or ICONV. Which is supporting more languages?
by Soumya Basheer
Tue, 2018-09-04, 12:32
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Yes. I have checked by rebuilding also,but not getting.
by Soumya Basheer
Tue, 2018-09-04, 12:03
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

When you compile DCMTK with ICU enabled, does dcmdump provide a --convert-to-utf8 option and does dcmdump --version show ICU as an "external libraries used"? Not showing the option and external library. I am just doing an experimentation regarding the unicode characters. I am doing the bel...
by Soumya Basheer
Tue, 2018-09-04, 11:17
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

DCMTK_ENABLE_CHARSET_CONVERSION value is ICU. DCMTK_WITH_ICU is set to on,but it is not working in ofchrenc.cc and while calling the convertToUTF8() I am getting error as "No character encoding library available". But After giving the preprocessor DCMTK_ENABLE_CHARSET_CONVERSION in ofstd p...
by Soumya Basheer
Tue, 2018-09-04, 10:28
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Thank you. I could do it and could see it in japanes after converting that to widechar. One thing that I am facing is I am not getting DCMTK_ENABLE_CHARSET_CONVERSION preprocessor eventhough I have enabled it with ICU in cmake. For checking I gave this preprocessor in ofstd and done my experimentati...
by Soumya Basheer
Mon, 2018-09-03, 15:01
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

I have a database. I have saved a japanese name in database. When a C-FIND command comes i have to extract a japanese patient name from Dcmdataset and convert that to unicode. Then I have to compare that name with the name saved in database..How I can extract the patient name to unicode?Could you pl...
by Soumya Basheer
Mon, 2018-09-03, 14:21
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Re: Unicode conversion

Thank you.
I want to query a japanese patient name from db, so I need to get that patient name in japanese. could you please explain how I can acheive that? As dcmtk supports only multibyte option in properties whether I can acheive that?
by Soumya Basheer
Mon, 2018-09-03, 11:38
Forum: DCMTK - General
Topic: Unicode conversion
Replies: 20
Views: 11855

Unicode conversion

Hi,
How we can read a japanese/chinese patient name from dcmdataset and save it to database as unicode?