Skip to content

Instantly share code, notes, and snippets.

@isummation
Last active September 29, 2016 10:17
Show Gist options
  • Save isummation/6255730 to your computer and use it in GitHub Desktop.
Save isummation/6255730 to your computer and use it in GitHub Desktop.
<cfscript>
ws = createObject ("webservice" ,"http://www.webservicex.net/genericbarcode.asmx?WSDL" , { refreshWSDL=true });
arg1 = {
Height = 100,
Width = 100,
Angle = 0,
Ratio = 10,
Module = 1,
Left = 1,
Top = 1,
CheckSum = false,
FontName = "Arial" ,
BarColor = "Black" ,
BGColor = "White" ,
FontSize = 10,
barcodeOption = "Code" ,
barcodeType = "Code39" ,
checkSumMethod = "None" ,
showTextPosition = "TopLeft" ,
BarCodeImageFormat= "PNG"
};
barcode = ws.GenerateBarCode(arg1, "98443294" );
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment