OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
libgdcm2.8
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/10/2024 09:42:49 AM
rwxr-xr-x
📄
README.Debian
921 bytes
11/19/2017 07:56:15 AM
rw-r--r--
📄
README.txt
1.86 KB
11/09/2017 08:09:58 AM
rw-r--r--
📄
changelog.Debian.gz
857 bytes
02/05/2018 04:49:23 PM
rw-r--r--
📄
copyright
23.47 KB
11/19/2017 07:56:15 AM
rw-r--r--
Editing: README.Debian
Close
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.