Exports and saves this PrintJob to the specified Stream object in PDF format.

Namespace: Neodynamic.SDK.Printing
Assembly: Neodynamic.SDK.ThermalLabel (in Neodynamic.SDK.ThermalLabel.dll) Version: 5.0.3500.0 (5.0.3500.4)

Syntax

C#
public void ExportToPdf(
	Stream stream,
	double dpi,
	int outputQuality
)
Visual Basic
Public Sub ExportToPdf ( _
	stream As Stream, _
	dpi As Double, _
	outputQuality As Integer _
)
Visual C++
public:
void ExportToPdf(
	Stream^ stream, 
	double dpi, 
	int outputQuality
)

Parameters

stream
Type: System.IO..::..Stream
The Stream object to which to save the output image in PDF format.
dpi
Type: System..::..Double
The resolution for the output image in the PDF Stream.
outputQuality
Type: System..::..Int32
The quality level for the label image in the PDF Stream which is in JPEG format. It must be an integer between 1 and 100.

See Also