Search found 318 matches

by Jan Schlamelcher
Wed, 2019-02-27, 11:49
Forum: DCMTK - General
Topic: Is it possible to build a single static library in Linux/Windows?
Replies: 1
Views: 1328

Re: Is it possible to build a single static library in Linux/Windows?

I don't think it exists, however, it should probably be pretty easy to do this by hand, if this suffices. Twenty seconds google:
https://stackoverflow.com/questions/382 ... s-into-one
by Jan Schlamelcher
Fri, 2019-02-22, 10:33
Forum: DCMTK - Installation
Topic: Use DCMTK in Android Studio
Replies: 2
Views: 6540

Re: Use DCMTK in Android Studio

I don't know about Android Studio, since I've never used it. However, regarding JNI, you may have a look at the source code of DICOMscope, which is a Java desktop application based on DCMTK.
by Jan Schlamelcher
Mon, 2019-02-18, 12:17
Forum: DCMTK - Installation
Topic: fc28/rh8 libiconv again
Replies: 5
Views: 7396

Re: fc28/rh8 libiconv again

Duly noted, we'll fix that!
by Jan Schlamelcher
Mon, 2019-02-18, 10:37
Forum: DCMTK - Installation
Topic: fc28/rh8 libiconv again
Replies: 5
Views: 7396

Re: fc28/rh8 libiconv again

instead of recommended LIBICONV_INCLUDE_DIR and LIBICONV_LIBDIR/LIBICONV_LIBRARY Recommended where / by whom? As far as I remember, we unified DCMTK's FindIConv.cmake with the official one, so, if the official one uses Iconv_INCLUDE_DIR etc., that should simply be the way to go now. Did we perhaps ...
by Jan Schlamelcher
Mon, 2018-12-03, 18:31
Forum: DCMTK - General
Topic: dcm2json filtering
Replies: 1
Views: 1503

Re: dcm2json filtering

Good Idea! Maybe have a look at the class DcmAttributeFilter that might help for filtering items.
by Jan Schlamelcher
Fri, 2018-11-30, 18:30
Forum: Announcements
Topic: DCMTK 3.6.4 available for public release
Replies: 0
Views: 67095

DCMTK 3.6.4 available for public release

Version 3.6.4 of the OFFIS DCMTK (DICOM ToolKit) software is now available for public release. This is a minor release that includes the following changes over the previous version 3.6.3: DCMTK 3.6.4 builds correctly on older and up-to-date versions of GNU gcc (4.2.1 to 8.2.1) Clang (3.4.2 to 7.0.0)...
by Jan Schlamelcher
Fri, 2018-11-16, 11:09
Forum: DCMTK - General
Topic: DcmFileFormat::saveBuffer(... ???
Replies: 1
Views: 1479

Re: DcmFileFormat::saveBuffer(... ???

I can answer this one:
artemmikheev wrote:a) Looking into the code of ::saveFile() is it possible to replace DcmOutputFileStream
and use the DcmOutputStream and somehow attach my buffer to it.
Have a look at the class DcmOutputBufferStream.
by Jan Schlamelcher
Wed, 2018-11-14, 11:41
Forum: DCMTK - Installation
Topic: Problem building with OpenSSl support on macOS
Replies: 8
Views: 8380

Re: Problem building with OpenSSl support on macOS

I just looked at the code fragment from 3rdparty.cmake you've posted. Is it possible (perhaps a question for Marco) that the OpenSSL version check does not use the previously detected include directory of OpenSSL, therefore fails if OpenSSL does not exist in the standard include search paths? I noti...
by Jan Schlamelcher
Thu, 2018-11-08, 14:43
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

Just need to know if this will have an impact on later stage Probably not, but one can't be sure. You will run into problems if you use code that depends on the define and also includes (directly or indirectly) ofstd/ofpwd.h. My guess would be that this is very unlikely, but you cannot be 100% sure...
by Jan Schlamelcher
Thu, 2018-11-08, 13:04
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

It was during this year, that's all I remember.
by Jan Schlamelcher
Thu, 2018-11-08, 12:16
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

Last time I tried this issue did not exist.
by Jan Schlamelcher
Thu, 2018-11-08, 11:53
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

Turns out there is no good way to workaround this issue. The best way is probably to put #undef pw_gecos in line 35 of ofstd/include/dcmtk/ofstd/ofpwd.h, but this would of course have the side effect that everyone including this file loses the definition. While this would fix the issue at hand, it m...
by Jan Schlamelcher
Thu, 2018-11-08, 11:11
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

I see. I think we always declare pw_gecos, even if the API below does not provide it. So it makes sense the issue survives. I'll have to do some more workarounds, luckily, Google incompetence wasting time I don't have is an experience I am now quite used to.
by Jan Schlamelcher
Thu, 2018-11-08, 10:55
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

I've edited my post, see above.
by Jan Schlamelcher
Thu, 2018-11-08, 10:15
Forum: DCMTK - Installation
Topic: Error while building DCMTK lib for ANDROID
Replies: 51
Views: 57406

Re: Error while building DCMTK lib for ANDROID

I see now. They seem to believe it is a good idea to implement the optional pw_gecos by just mapping it to pw_passwd. While this is fully retarded up to a point it can no longer be explained by mere brain damage the normal way for Google to do things, it might be a serious problem, just look at the ...