ProfileStoreImage Method (String, String, Int32, Int32)
|
Stores the specified image to the connected printer as a monochrome image.
Namespace:
Zebra.Sdk.Device
Assembly:
SdkApi_Core (in SdkApi_Core.dll) Version: 2.14.1869
Syntax public void StoreImage(
string deviceDriveAndFileName,
string imageFullPath,
int width,
int height
)
Public Sub StoreImage (
deviceDriveAndFileName As String,
imageFullPath As String,
width As Integer,
height As Integer
)
public:
virtual void StoreImage(
String^ deviceDriveAndFileName,
String^ imageFullPath,
int width,
int height
) sealed
Parameters
- deviceDriveAndFileName
- Type: SystemString
Path on the printer where the image will be stored. - imageFullPath
- Type: SystemString
The image file to be stored on the printer. - width
- Type: SystemInt32
Desired width of the printed image, in dots. Passing -1 will preserve original width. - height
- Type: SystemInt32
Desired height of the printed image, in dots. Passing -1 will preserve original height.
Implements
GraphicsUtilStoreImage(String, String, Int32, Int32)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