Hi,
your report and patch have been correct, thanks again
I submitted a patch along with some test code to the DCMTK repository which will be available on the public mirrors within the next days.
BR Michael
Search found 2072 matches
- Fri, 2024-09-13, 16:57
- Forum: DCMTK - General
- Topic: Setting single value in the string with VM > 1 results in an incorrect string
- Replies: 4
- Views: 811
- Fri, 2024-09-13, 08:53
- Forum: DCMTK - General
- Topic: Setting single value in the string with VM > 1 results in an incorrect string
- Replies: 4
- Views: 811
Re: Setting single value in the string with VM > 1 results in an incorrect string
This simply looks like a bug, we are looking into it. Thank you for reporting!
BR Michael
BR Michael
- Wed, 2024-08-14, 14:21
- Forum: DCMTK - General
- Topic: Exception While Decompress the JPEG-LS Dicom file
- Replies: 4
- Views: 1929
Re: Exception While Decompress the JPEG-LS Dicom file
Hi, this is what your program ("jpgls") returns on my computer running the current version if DCMTK (master branch as of https://github.com/DCMTK/dcmtk/): ❯ bin/jpegls D: DcmDataDictionary: Loading file: /home/michael/data/builds/install/dcmtk_linux_368/share/dcmtk-3.6.8/dicom.dic D: DcmMe...
- Mon, 2024-07-29, 10:21
- Forum: DCMTK - Installation
- Topic: Self built OpenSSL version 3.0.8 names
- Replies: 21
- Views: 7768
Re: Self built OpenSSL version 3.0.8 names
P.S: I also tried with a self-built OpenSSL. It also works for my out of the box. Download Windows build of OpenSSL. I used this one (Win64 OpenSSL v3.3.1 MSI installer Download and build source code as described here: https://wiki.openssl.org/index.php/Compilation_and_Installation#W64 Configure DCM...
- Mon, 2024-07-29, 09:31
- Forum: DCMTK - Installation
- Topic: Self built OpenSSL version 3.0.8 names
- Replies: 21
- Views: 7768
Re: Self built OpenSSL version 3.0.8 names
Hi, I tried to use pre-built current version of OpenSSL to check building DCMTK with it. This is what I have done: Download Windows build of OpenSSL. I used this one (Win64 OpenSSL v3.3.1 MSI installer): https://slproweb.com/products/Win32OpenSSL.html Configure DCMTK in CMake (no options set) When c...
- Wed, 2024-07-10, 19:03
- Forum: DCMTK - Installation
- Topic: Self built OpenSSL version 3.0.8 names
- Replies: 21
- Views: 7768
Re: Self built OpenSSL version 3.0.8 names
Maybe you should just build and check which library files are actually linked to your binaries when the linker is invoked. Or you can start "storescu --version" after the build and it should display the openssl version being used.
- Mon, 2024-07-08, 21:46
- Forum: DCMTK - Installation
- Topic: Self built OpenSSL version 3.0.8 names
- Replies: 21
- Views: 7768
Re: Self built OpenSSL version 3.0.8 names
Then it still uses the DCMTK-build versions of those libraries.
- Thu, 2024-06-27, 08:43
- Forum: DCMTK - Installation
- Topic: Self built OpenSSL version 3.0.8 names
- Replies: 21
- Views: 7768
Re: Self built OpenSSL version 3.0.8 names
Just build and install OpenSSL on windows the "default way". You can then tell DCMTK where to look for the OpenSSL library by defining the CMake variable "OPENSSL_ROOT_DIR" and point it to the (main) directory where you installed OpenSSL to. DCMTK will then pickup the right libra...
- Thu, 2024-06-27, 08:37
- Forum: DCMTK - Installation
- Topic: Vulnerabilities in OpenSSL 1.1.1w
- Replies: 8
- Views: 3326
Re: Vulnerabilities in OpenSSL 1.1.1w
Hi, we might offer them in the future but we don't plan to spend time on this right now. DCMTK compiles fine with recent versions of OpenSSL, as stated in the INSTALL file: This release of DCMTK is known to compile with OpenSSL releases 1.1.1, 3.0.x, 3.1.x and 3.2.x. If you want to use up-to-date de...
- Tue, 2024-06-25, 15:35
- Forum: DCMTK - Installation
- Topic: Is there a way to select x64 and Win32?
- Replies: 5
- Views: 2383
Re: Is there a way to select x64 and Win32?
No, you can always configure only for one platform, x64 or win32.
Just use two different build folders and configure/generate twice.
Just use two different build folders and configure/generate twice.
- Tue, 2024-06-25, 15:35
- Forum: DCMTK - Installation
- Topic: Warning after switching to use environment variables
- Replies: 7
- Views: 2820
Re: Warning after switching to use environment variables
Can you expect every developer to put the project into the same folder, e.g. c:\my_project\src for the source code and c:\my_project\build for the build? If so, I would think the project is "portable". The project (sln) might still need cmake in the background, but I think it's portable as...
- Mon, 2024-06-24, 20:03
- Forum: DCMTK - Installation
- Topic: Where is the documentation for the CMake DCMTK_WITH options?
- Replies: 9
- Views: 3001
Re: Where is the documentation for the CMake DCMTK_WITH options?
Sorry, no idea of the whole thing (creating .sln and just adapt environment variables) will work out in the end. At least I can say I never tried this and have no idea how to do it
- Mon, 2024-06-24, 20:01
- Forum: DCMTK - Installation
- Topic: Warning after switching to use environment variables
- Replies: 7
- Views: 2820
Re: Warning after switching to use environment variables
You can suppress generation of by using if the cmake files don't change "in the background" after creating the VS project files (or you don't care), see the related CMake documentation.
Code: Select all
set(CMAKE_SUPPRESS_REGENERATION true)
- Wed, 2024-06-19, 08:27
- Forum: DCMTK - Installation
- Topic: Visual Studio/MS Windows build system generation
- Replies: 4
- Views: 2205
Re: Visual Studio/MS Windows build system generation
Hi, I have no experience to make Visual Studio solution files relocatable, and maybe it is not even possible. That being said, the Visual Studio files are rarely commited to a source code repository (at leas when working with a team). Instead, every developer usually runs CMake on his own machine an...
- Wed, 2024-06-19, 08:18
- Forum: DCMTK - Installation
- Topic: Where is the documentation for the CMake DCMTK_WITH options?
- Replies: 9
- Views: 3001
Re: Where is the documentation for the CMake DCMTK_WITH options?
Sometimes its just enough to hit Configure and Generate if you don't need any special features. We try to provide sane defaults...