DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomPrint Class / PrintImage Method

The image to print

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.




In This Topic
    PrintImage Method
    In This Topic
    Sends an image to the printer
    Syntax
    'Declaration
     
    
    Public Sub PrintImage( _
       ByVal Image As DicomDataSet, _
       ByVal Raw As Boolean _
    ) 
    'Usage
     
    
    Dim instance As DicomPrint
    Dim Image As DicomDataSet
    Dim Raw As Boolean
     
    instance.PrintImage(Image, Raw)
    public void PrintImage( 
       DicomDataSet Image,
       bool Raw
    )
    public:
    void PrintImage( 
       DicomDataSet^ Image,
       bool Raw
    ) 

    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.

    Remarks
    Unless the order is altered explicitly using NextPosition or PrintFilm, images are put into each of the image boxes on the film in the default order, and each film is printed once full.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also