Search found 1437 matches

by Marco Eichelberg
Tue, 2023-03-07, 14:32
Forum: DCMTK - General
Topic: Minimal example (Linux) application using DCMTK with linking errors
Replies: 16
Views: 5855

Re: Minimal example (Linux) application using DCMTK with linking errors

DCMTK_PORTABLE_LINUX_BINARIES tries to create portable Linux binaries by linking all libraries statically, with the exception of glibc, which is linked dynamically. Glibc cannot be linked statically in a portable manner since the library will load additional shared objects at runtime, and this is li...
by Marco Eichelberg
Mon, 2023-03-06, 09:31
Forum: DCMTK - General
Topic: Findscu.exe: reading from a file?
Replies: 3
Views: 2790

Re: Findscu.exe: reading from a file?

Yes, that is correct. Wildcard expansion works differently on Windows.
by Marco Eichelberg
Fri, 2023-03-03, 12:05
Forum: DCMTK - General
Topic: Findscu.exe: reading from a file?
Replies: 3
Views: 2790

Re: Findscu.exe: reading from a file?

Yes, that is possible. All DCMTK tools can read the options from a command file instead of the command line. Just specify the name of the command line with a leading '@': findscu @commands.txt The file 'commands.txt' should be a simple text file that contains the command line options, separated by s...
by Marco Eichelberg
Wed, 2023-03-01, 18:14
Forum: DCMTK - Installation
Topic: dcmjpls.lib : possible defect in the configuration tool?
Replies: 1
Views: 3195

Re: dcmjpls.lib : possible defect in the configuration tool?

The files in the libcharls folder are compiled into a separate library, named "libdcmtkcharls.a" on Linux, and "dcmtkcharls.lib" on Windows. You need to link against this library whenever you link against the static libdcmjpls library. DLLs automatically contain this dependency, ...
by Marco Eichelberg
Wed, 2023-03-01, 17:58
Forum: DCMTK - Installation
Topic: 3.6.7 : Problem with linking JpegLS static library on Windows
Replies: 3
Views: 3786

Re: 3.6.7 : Problem with linking JpegLS static library on Windows

artemmikheev wrote: Sun, 2023-02-26, 16:26 BTW, what happened to dcmsign.lib? The project for it is present in the source code, but when CMAKE generated the whole solution, the dcmsign project is missing from the solution.
You are compiling without OpenSSL support. In that case, the dcmsign library is empty.
by Marco Eichelberg
Tue, 2023-02-07, 09:07
Forum: DCMTK - General
Topic: 0xa900: Error: Refused - Data Set does not match SOP Class
Replies: 11
Views: 7291

Re: 0xa900: Error: Refused - Data Set does not match SOP Class

My guess would be an incorrect presentation context ID used in the C-STORE-RQ message. Unfortunately, the dump output of our tools does not print this ID - perhaps something we should change.
by Marco Eichelberg
Thu, 2023-02-02, 09:47
Forum: DCMTK - General
Topic: Slow Dicom->BMP rendering
Replies: 4
Views: 1481

Re: Slow Dicom->BMP rendering

Well, the reason why JPEG 2000 has never achieved widespread usage is the fact that the compression algorithm requires much more memory and time than, for example, classic JPEG. So in comparison to JPEG, JPEG 2000 will always be slow, and there is no way to avoid that. Of course there are faster and...
by Marco Eichelberg
Fri, 2023-01-20, 16:39
Forum: Other DICOM Tools
Topic: Problem when printing to an AGFA Drystar AXYS printer
Replies: 6
Views: 5841

Re: Problem when printing to an AGFA Drystar AXYS printer

Well, a configuration of the printer that has different settings for different AETitles explains the problem...
by Marco Eichelberg
Thu, 2023-01-05, 22:49
Forum: DCMTK - General
Topic: missing in 3.6.7 DcmFileFormat::loadFileUntilTagFromBuffer
Replies: 1
Views: 974

Re: missing in 3.6.7 DcmFileFormat::loadFileUntilTagFromBuffer

There was no method of this name in DcmFileFormat in DCMTK 3.6.3. Is this perhaps something you (or a colleague) added by yourself?
by Marco Eichelberg
Thu, 2023-01-05, 11:45
Forum: DCMTK - General
Topic: DCMTK worklist configuration
Replies: 12
Views: 20267

Re: DCMTK worklist configuration

I am fairly certain that (0008,1040) Institutional Department Name is not supported by wlmscpfs as query or return key.
by Marco Eichelberg
Thu, 2023-01-05, 11:43
Forum: DCMTK - Installation
Topic: Error configuring DCMTK for Android
Replies: 4
Views: 5845

Re: Error configuring DCMTK for Android

Basically, you need the device emulator to create the arith.h file. Once you have that, consult the installation instructions (INSTALL file), which provide the following information on cross-compiling DCMTK: CROSS COMPILING WITH CMAKE ========================== The main challenge when cross-compilin...
by Marco Eichelberg
Wed, 2022-12-28, 17:57
Forum: DCMTK - Installation
Topic: Error configuring DCMTK for Android
Replies: 4
Views: 5845

Re: Error configuring DCMTK for Android

Unfortunately, Google has apparently changed the Android SDK quite a bit since we added Android support. I can offer little help other that saying that we're planning to update the Android specific build code, and I hope that this will make it into the next release. In our continuous integration inf...
by Marco Eichelberg
Wed, 2022-12-28, 17:38
Forum: DCMTK - General
Topic: dcmdjpeg unexpected behaivour
Replies: 1
Views: 1197

Re: dcmdjpeg unexpected behaivour

Interesting case. The reason why dcmdjpeg adjusts Bits Stored to 12 is because the JPEG bitstream indicates that it uses 12 bits per pixel: JPEG_SOF_Parameters: SamplePrecision = 12 nLines = 1298 nSamplesPerLine = 912 nComponentsInFrame = 1 component 0 ComponentIdentifier = 1 HorizontalSamplingFacto...
by Marco Eichelberg
Mon, 2022-12-12, 14:56
Forum: DCMTK - General
Topic: Sort based on AE Title
Replies: 10
Views: 2420

Re: Sort based on AE Title

I just tried it with

Code: Select all

storescp -xcr "cmd.exe /c mkdir d:\test"
and it works for me. I am using the current DCMTK 3.6.7 on Windows 10, installed via Chocolatey.