Called for each image that is loaded using GetImages(DicomElement element, int index, int count, int bitsPerPixel, RasterByteOrder order, DicomGetImageFlags flags, DicomGetImageCallback callback).
Public Delegate Function DicomGetImageCallback( _
ByVal page As Integer, _
ByVal count As Integer _
) As Boolean
public interface DicomGetImageCallback
{
public boolean onDicomGetImageCallback(int page, int count);
}
DicomGetImageCallback(
page,
count
)
page
Zero based index of the image being loaded from the DicomDataSet.
count
Total number of images to be loaded. This is the same value passed to GetImages(DicomElement element, int index, int count, int bitsPerPixel, RasterByteOrder order, DicomGetImageFlags flags, DicomGetImageCallback callback).
true to continue, false to abort the load.
The GetImages(DicomElement element, int index, int count, int bitsPerPixel, RasterByteOrder order, DicomGetImageFlags flags, DicomGetImageCallback callback) method calls your DicomGetImageCallback for each image that is loaded.
For an example, refer to GetImages(DicomElement element, int index, int count, int bitsPerPixel, RasterByteOrder order, DicomGetImageFlags flags, DicomGetImageCallback callback).
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET