GraphicsUtilStoreImage(String, String, Int32, Int32) Method
|
Stores the specified image to the connected printer as a monochrome image.
Namespace: Zebra.Sdk.PrinterAssembly: SdkApi.Core (in SdkApi.Core.dll) Version: 3.0.3271
Syntax void StoreImage(
string deviceDriveAndFileName,
string imageFullPath,
int width,
int height
)
Sub StoreImage (
deviceDriveAndFileName As String,
imageFullPath As String,
width As Integer,
height As Integer
)
void StoreImage(
String^ deviceDriveAndFileName,
String^ imageFullPath,
int width,
int height
)
Parameters
- deviceDriveAndFileName String
- Path on the printer where the image will be stored.
- imageFullPath String
- The image file to be stored on the printer.
- width Int32
- Desired width of the printed image, in dots. Passing -1 will preserve original width.
- height Int32
- Desired height of the printed image, in dots. Passing -1 will preserve original height.
Exceptions Remarks
The image will be stored on the printer at
printerDriveAndFileName with the extension GRF.
If a drive letter is not supplied, E will be used as the default (e.g. FILE becomes E:FILE.GRF). If an extension is supplied,
it is ignored if it is not either BMP or PNG. If the extension is ignored, GRF will be used.
If the image resolution is large (e.g. 1024x768) this method may take a long time to execute or throw an
OutOfMemoryException.
See Also