public static Image getGS1128Barcode(string value, string readable, int barcodeHeight = 17, int barcodeWidth = 100) { GS1_128 gs1128Encoder = new GS1_128(); return(gs1128Encoder.Encode(value, readable, barcodeHeight, barcodeWidth)); }
public static Image getGS1128Barcode(string value, string readable) { GS1_128 gs1128Encoder = new GS1_128(); return(gs1128Encoder.Encode(value, readable)); }