DicomDevice.DicomDevice

DicomDevice()

Initializes a new instance of the DicomDevice class with default resolution.

public DicomDevice()

See Also


DicomDevice(Resolution)

Initializes a new instance of the DicomDevice class. Resolution for the result image file, see Resolution class.

public DicomDevice(Resolution resolution)

See Also


DicomDevice(PageSize)

Initializes a new instance of the DicomDevice class with provided page size, with default resolution (=150).

public DicomDevice(PageSize pageSize)
ParameterTypeDescription
pageSizePageSizePage size of the output image.

See Also


DicomDevice(int, int)

Initializes a new instance of the DicomDevice class with provided image dimensions, with default resolution (=150).

public DicomDevice(int width, int height)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.

See Also


DicomDevice(PageSize, Resolution)

Initializes a new instance of the DicomDevice class with provided page size and resolution.

public DicomDevice(PageSize pageSize, Resolution resolution)
ParameterTypeDescription
pageSizePageSizePage size of the output image.
resolutionResolutionResolution for the result image file, see Resolution class.

See Also


DicomDevice(int, int, Resolution)

Initializes a new instance of the DicomDevice class with provided image dimensions and resolution.

public DicomDevice(int width, int height, Resolution resolution)
ParameterTypeDescription
widthInt32Image output width.
heightInt32Image output height.
resolutionResolutionResolution for the result image file, see Resolution class.

See Also