support

Barcodesoft Webservice Online Document:
Code 39 Extended


Byte[] Code39Ext(string textToEncode,
bool ShowHumanReadable,
bool ShowCheckDigit,
BcsImageFormat ImageFormat,
BcsOrientation Orientation,
int Resolution,
int Width,
int Height,
string strToken)


Code39Ext accepts 9 parameters, returns the barcode image as a byte array.

textToEncode is a string to encode.

ShowHumanReadable is a boolean value for showing human readable text.

ShowCheckDigit is a boolean value for showing check digit.

ImageFormat is in enum BcsImageFormat. It can be set to one of the following values: BMP, JPG, PNG, WMF, TIFF, GIF.

Orientation is in enum BcsOrientation. It can be set to one of the following values: Original, Rotate90, Rotate180, Rotate270.

Resolution is an integer, its values ranges between 96 and 600. Any other value will be reset to 96.

Width is in pixel value. If you set it to zero, it will automatically find a best value for you.

Height is in pixel value. If you set it to zero, it will automatically find a best value for you.

Token is your password using this webservice. You will get a token after you purchase a license from Barcodesoft.

Code39, also known as 3 of 9 code, USD-3 and LOGMARS, is one of the most widely used bar code symbologies.

Code 39 accepts only 43 valid input characters: 26 uppercase alphas, 10 digits and hyphen(-), period(.), space, dollar sign($), slash(/), plus(+) and percent (%).

However, it is possible to encode full ASCII table by combining 2 characters together to represent the 3rd one. Thus created Code 39 Extended barcode.

See Also
Code39
Code39 Check