public interface IDicomFileWriter
| Modifier and Type | Method and Description |
|---|---|
int |
setHeader(IDicomFileHeader objDicomFileHeader_)
Sets the header to the file.
|
int |
writeDataContents(byte[] dataContents)
Write the data contents to the file.
|
int |
writeDefaultHeader()
Write the default header to the file.
|
int |
writeHeader(byte[] header)
Write the header to the file.
|
int |
writeHeader(IDicomFileHeader objDicomFileHeader)
Write the header to the file.
|
int |
writeHeaderPrefix()
Write the header prefix to the file.
|
int |
writePreamble()
Write the preamble value to file.
|
int |
writePreamble(byte[] preamble)
Write the preamble value to file.
|
int writePreamble()
throws java.io.IOException
java.io.IOException - if Input/Output operation fails.int writePreamble(byte[] preamble)
throws java.io.IOException
preamble - byte array containing preamble value.java.io.IOException - if Input/Output operation fails.int writeHeaderPrefix()
throws java.io.IOException
java.io.IOException - if Input/Output operation fails.int writeHeader(byte[] header)
throws java.io.IOException
header - byte array containing header value.java.io.IOException - if Input/Output operation fails.int writeHeader(IDicomFileHeader objDicomFileHeader) throws java.io.IOException
objDicomFileHeader - instance of DicomFielHeader.java.io.IOException - if Input/Output operation fails.int writeDefaultHeader()
throws java.io.IOException
java.io.IOException - if Input/Output operation fails.int setHeader(IDicomFileHeader objDicomFileHeader_)
objDicomFileHeader_ - instance of dicom file header.int writeDataContents(byte[] dataContents)
throws java.io.IOException
dataContents - Byte array containing DataContents value.java.io.IOException - if Input/Output operation fails.