
| Current Path : /usr/share/doc/libgdcm3.0/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/share/doc/libgdcm3.0/README.Debian |
Debian packages of gdcm --------------------------- There are 3 primary packages at this point: libgdcm2, libgdcm2-dev and libgdcm2-dbg, which respectively provide the library, static and headers for the library, and debug symbols for the shared library. C#: In order to use GDCM C#, you can use: $ gmcs ReformatFile.cs /r:/usr/lib/libgdcm-cil/gdcm-sharp.dll $ MONO_PATH=/usr/lib/libgdcm-cil/ LD_LIBRARY_PATH=/usr/lib/libgdcm-cil/ mono ReformatFile.exe input.dcm output.dcm where ReformatFile.cs is an example taken from the src tarball of gdcm (Examples subdir) Java side: gdcm.jar will automatically load the jni glue lib (currently called gdcmjni.so), but programmer are still required to change the value of LD_LIBRARY_PATH and CLASSPATH: $ javac HelloSimple.java -classpath /usr/share/java/gdcm.jar $ LD_LIBRARY_PATH=/usr/lib/jni/ java HelloSimple -classpath /usr/share/java/gdcm.jar:. - Mathieu Malaterre.