Prints an image from the Windows Mobile device file system to the connected printer as a monochrome image.
            
    Namespace: 
   ZSDK_API.PrinterAssembly: ZSDK_API (in ZSDK_API.dll) Version: 1.1.123.0
Syntax
| C# | 
|---|
void PrintImage( string imageFilePath, int x, int y, int width, int height, bool insideFormat )  | 
| Visual Basic (Declaration) | 
|---|
Sub PrintImage ( _ imageFilePath As String, _ x As Integer, _ y As Integer, _ width As Integer, _ height As Integer, _ insideFormat As Boolean _ )  | 
Parameters
- imageFilePath
 - Type: System..::.String
Full path to image file. 
- x
 - Type: System..::.Int32
Horizontal starting position in dots. 
- y
 - Type: System..::.Int32
Vertical starting position in dots. 
- width
 - Type: System..::.Int32
Desired width of the printed image, in dots. Passing -1 will preserve original width. 
- height
 - Type: System..::.Int32
Desired height of the printed image, in dots. Passing -1 will preserve original height. 
- insideFormat
 - Type: System..::.Boolean
Boolean value indicating whether this image should be printed by itself (false), or is part of a format being written to the connection (true). 
Remarks
            If the image resolution is large (e.g. 1024x768) this method may take a long time to execute or
            throw an exception.
            
Exceptions
| Exception | Condition | 
|---|---|
| ZSDK_API.ApiException..::.ZebraPrinterConnectionException | If there is an issue communicating with the printer (e.g. the connection is not open). | 
| ZSDK_API.ApiException..::.ZebraGeneralException | If there are issues rendering the graphic. |