Class DicomDevice

DicomDevice class

Represents image device that helps to save pdf document pages into Dicom format.

public sealed class DicomDevice : ImageDevice

Constructors

NameDescription
DicomDevice()Initializes a new instance of the DicomDevice class with default resolution.
DicomDevice(PageSize)Initializes a new instance of the DicomDevice class with provided page size, with default resolution (=150).
DicomDevice(Resolution)Initializes a new instance of the DicomDevice class. Resolution for the result image file, see Resolution class.
DicomDevice(int, int)Initializes a new instance of the DicomDevice class with provided image dimensions, with default resolution (=150).
DicomDevice(PageSize, Resolution)Initializes a new instance of the DicomDevice class with provided page size and resolution.
DicomDevice(int, int, Resolution)Initializes a new instance of the DicomDevice class with provided image dimensions and resolution.

Properties

NameDescription
CoordinateType { get; set; }Gets or sets the page coordinate type (Media/Crop boxes). CropBox value is used by default.
FormPresentationMode { get; set; }Gets or sets form presentation mode.
Height { get; }Gets image output height.
RenderingOptions { get; set; }Gets or sets rendering options.
Resolution { get; }Gets image resolution.
Width { get; }Gets image output width.

Methods

NameDescription
override Process(Page, Stream)Converts the page into Dicom and saves it in the output stream.
Process(Page, string)Perfoms some operation on the given page and saves results into the file.

See Also