Saves this barcode image to the specified file in the specified format, resolution and fitting the bars into the specified size.

Namespace: Neodynamic.WinControls.BarcodeProfessional
Assembly: Neodynamic.WinControls.BarcodeProfessional (in Neodynamic.WinControls.BarcodeProfessional.dll) Version: 7.0.2000.0 (7.0.2000.0)

Syntax

C#
public void Save(
	string filename,
	ImageFormat format,
	float dpi,
	SizeF barsAreaSize
)
Visual Basic
Public Sub Save ( _
	filename As String, _
	format As ImageFormat, _
	dpi As Single, _
	barsAreaSize As SizeF _
)
Visual C++
public:
void Save(
	String^ filename, 
	ImageFormat^ format, 
	float dpi, 
	SizeF barsAreaSize
)

Parameters

filename
Type: System..::..String
A string that contains the name of the file to which to save this barcode image.
format
Type: System.Drawing.Imaging..::..ImageFormat
The ImageFormat object for this barcode image.
dpi
Type: System..::..Single
The resolution, in dots per inch, of the barcode image.
barsAreaSize
Type: System.Drawing..::..SizeF
The desired bars area size that the barcode must fit in. The unit of measure must be specified to BarcodeUnit property.

See Also