Sends an image to the printer
public void PrintImage(
DicomImage ,
System.bool ,
System.bool
)
public procedure PrintImage(
: DicomImage;
: System.Boolean;
: System.Boolean
);
public function PrintImage(
: DicomImage,
: System.boolean,
: System.boolean
);
public: void PrintImage(
DicomImage* ,
System.bool ,
System.bool
)
public:
void PrintImage(
DicomImage^ ,
System.bool ,
System.bool
)
'Declaration
Public Sub PrintImage( _
ByVal As DicomImage, _
ByVal As System.Boolean, _
ByVal As System.Boolean _
)
'Usage
Dim instance As DicomPrint
Dim Image As DicomImage
Dim Raw As System.Boolean
Dim UseLabels As System.Boolean
instance.PrintImage(Image, Raw, UseLabels)
Parameters
- Image
The image to print
- Raw
If true, the image is presumed to be pre-formatted (e.g. from a PrinterImage method), and is sent without modification, but if false (the norm), then an internal PrinterImage method is called first, thereby "fixing" the windowing, and (if UseLabels is true) adding any annotations.
- UseLabels
If Raw is false, and this parameter is true, then any DicomLabels or DICOM annotations are "burnt-in" to the pixel data before the image is sent to the printer.
Target Platforms: .NET CLR 4.8 or higher