Esempio n. 1
0
        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));
        }
Esempio n. 2
0
        public static Image getGS1128Barcode(string value, string readable)
        {
            GS1_128 gs1128Encoder = new GS1_128();

            return(gs1128Encoder.Encode(value, readable));
        }