Example #1
0
 // GS w n Set bar code width
 public bool barcode_width(string szPrinterName, int range = 3)
 {
     //range = 2 ≤ n ≤ 6
     int[] width = { 29, 119, range };
     RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(width));
     return(true);
 }
Example #2
0
        //Double-height selected.
        public bool doubleHeightText(string szPrinterName)
        {
            int[] height = { 27, 33, 16 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(height));

            return(true);
        }
Example #3
0
        //*************************** barcode  commands **********************************

        //GS h n - sets bar the height of bar code to n dots.
        public bool barcode_height(string szPrinterName, int range = 162) // default = 162
        {
            //range 1 ≤ n ≤ 255
            int[] height = { 29, 104, range };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(height));
            return(true);
        }
Example #4
0
        //Character Control Commands

        //use this mode to cancel another mode.
        public bool normalModeText(string szPrinterName)
        {
            int[] normal = { 27, 33, 0 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(normal));

            return(true);
        }
Example #5
0
        //Character font B (9 × 17) selected.
        public bool charFontBText(String szPrinterName)
        {
            int[] fontB = { 27, 33, 1 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(fontB));


            return(true);
        }
Example #6
0
        //GS f n Select a font for the HRI characters when printing a bar code.
        public bool barcodeHRI_chars(string szPrinterName, int font_code = 0)
        { //default 0
            //[Range] n = 0, 1, 48, 49
            int[] hri = { 29, 102, font_code };


            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(hri));
            return(true);
        }
Example #7
0
        //activate printer buzzer
        public bool buzzer(String szPrinterName)
        {
            //hex data = "1b 28 41 05 00 61 64 03 0a 0a";
            int[] buzzer = { 27, 40, 65, 5, 0, 97, 100, 3, 10, 10 };

            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(buzzer));
            // RawPrinterHelper.SendASCiiToPrinter(szPrinterName, data);
            return(true);
        }
Example #8
0
        //Select cut mode and cut paper
        public bool CutPaper(String szPrinterName)
        {
            //hex 1D 56 m, m =0,1,48,49

            int[] cut = { 29, 86, 0 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(cut));

            return(true);
        }
Example #9
0
        //execute test print
        public bool testPrint(String szPrinterName)
        {
            //function GS ( A pL pH n m

            int[] test = { 29, 40, 65, 2, 0, 0, 2 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(test));

            return(true);
        }
Example #10
0
        //GS H n Select print position of HRI characters
        public bool barcodeHRIPostion(string szPrinterName, int position_code = 1)
        { //default = 0
          //[Range] 0 ≤ n ≤ 3, 48 ≤ n ≤ 51

            int[] print_position = { 29, 72, position_code };

            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(print_position));
            return(true);
        }
Example #11
0
        //GS k Print barcode
        //<Function A>
        public bool printBarcode(string szPrinterName, string data, int type = 2)
        { //for this example 2 = JAN/EAN13
            int[] barcode = { 29, 107, type };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(barcode));

            RawPrinterHelper.SendStringToPrinter(szPrinterName, data);
            int[] nul = { 0 }; // null char at the end.
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(nul));
            return(true);
        }
Example #12
0
 //print and Line feed
 public bool lineFeed(String szPrinterName, int numLines)
 {
     // fucntion LF
     int[] lf = { 10 };
     for (int i = 1; i <= numLines; i++)
     {
         RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(lf));
     }
     return(true);
 }
Example #13
0
        //Generate pulse in Real Time
        public bool drawerKick(String szPrinterName)
        {
            // function DLE DC4 fn m t (fn=1)


            int[] pulse = { 27, 112, 0, 100, 200 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(pulse));


            return(true);
        }
Example #14
0
        //GS k Print Barcode
        // <Function B>
        public bool printBarcodeB(String szPrinterName, string data, int type = 73)
        {                                //for this example 73 = CODE128
            int size = (int)data.Length; //  the number of bytes of bar code data

            int[] barcode = { 29, 107, type, size };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(barcode));
            RawPrinterHelper.SendStringToPrinter(szPrinterName, data);


            return(true);
        }
Example #15
0
 public void PrintDocument()
 {
     if (_buffer == null)
     {
         return;
     }
     if (!RawPrinterHelper.SendBytesToPrinter(_printerName, _buffer))
     {
         throw new ArgumentException("Unable to access printer : " + _printerName);
     }
 }
Example #16
0
        public void PrintDocument()
        {
            if (_buffer == null)
            {
                return;
            }

            if (!RawPrinterHelper.SendBytesToPrinter(_printerName, _buffer))
            {
                throw new ArgumentException("Não foi possível acessar a impressora: " + _printerName);
            }
        }
Example #17
0
        // Print Position Commands
        //ESC a n
        public bool SelectJustification(string szPrinterName, int justification_code)
        {
            //0= default
            //48 left
            //1,49 centering
            //2,50 right

            int[] align = { 27, 97, justification_code };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(align));

            return(true);
        }
Example #18
0
        //Select an international character set
        public bool charSet(String szPrinterName, int language)
        {
            //function ESC R n
            //0-USA
            //12-Latin America
            //
            int[] char_set = { 27, 82, language };

            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(char_set));

            return(true);
        }
Example #19
0
        private void etiquetaFixIndividual(string GTIN, string Lote, string Peso, string ItemCode, string ItemName, string Fecha)
        {
            //string sUrlRequest = "http://api.ccfn.com.mx/json/productos/" + txtproducto.Text;
            //var json = new WebClient().DownloadString(sUrlRequest);

            //var list = JsonConvert.DeserializeObject<List<Producto>>(json)
            string s = "^XA\n";

            s += "^FW\n";
            s += "^CF0,40\n";
            s += "^FX Primera Seccion Producto\n";
            s += "^FO30,30^FDComercial de Carnes Frias del Norte SA de CV.^FS\n";
            s += "^CF1,20\n";
            s += "^FO30,80 ^ FDAv.Brasil 2800.^FS\n";
            s += "^FO30,100^FDCol.Alamitos 21210 ^FS\n";
            s += "^FO30,120^FDMexicali, BC^FS\n";
            s += "^FO30,140^FDMexico ^FS\n";
            s += "^CF0,30\n";
            s += "^FO50,190 ^FD" + ItemCode + " - " + ItemName + "^FS\n";
            s += "^FO40,180 ^FR^GB730,40,40 ^FS\n";
            s += "^BY2,2.5,80\n";
            s += "^FO200,230\n";
            s += "^BCN,,N,N,N,B\n";
            s += "^FD >;> 801" + GTIN + "10" + Lote + " ^FS\n";
            s += "^FT210,335 ^A0N,25,25 ^FD(01)" + GTIN + "(10)" + Lote + "^FS\n";
            s += "^CF0,20\n";
            s += "^FO50,360 ^FDGTIN:" + GTIN + "^FS\n";
            s += "^FO50,400 ^FDLote:" + Lote + "^FS\n";
            s += "^FO500,360 ^FDPeso: " + Peso + "^FS\n";
            s += "^FO500,400 ^FDCaducidad:" + Fecha + "^FS\n";
            s += "^BY2,2.5,60\n";
            s += "^FO600,80\n";
            s += "^BCN,,N,N,N,B\n";
            s += "^FD>;>837" + Peso + " ^FS\n";
            s += "^FT650,165^A0N,25,25 ^FD(37)" + Peso + "^FS\n";
            s += "^BY2,2.5,80\n";
            s += "^FO50,480\n";
            s += "^BCN,,N,N,N,B\n";
            s += "^FD>;>801" + GTIN + "3100" + Peso + "11" + Fecha + "10" + Lote + "37" + Peso + "^FS\n";
            s += "^FT60,590 ^ A0N,25,25 ^ FD(01)" + GTIN + "(3100)" + Peso + "(11)" + Fecha + "(10)" + Lote + "(37)" + Peso + "^FS\n";
            s += "^XZ\n";

            //sourceTextBox.Text = s;

            var bytes = Encoding.ASCII.GetBytes(s);

            // Send a printer-specific to the printer.

            RawPrinterHelper.SendBytesToPrinter("\\\\192.168.0.10\\s01-recepcion-srv10", bytes, bytes.Length);
            //MessageBox.Show("Data sent to printer.");
            //}
        }
Example #20
0
        //select character code table
        public bool codeTable(String szPrinterName, int language)
        {
            //function Esc t n
            // 0 - PC437 (USA: Standard Europe)]
            // 40 [ISO8859-15 (Latin9)]
            // 3 [PC860 (Portuguese)]

            int[] code = { 27, 116, language };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(code));


            return(true);
        }
Example #21
0
        //print text

        public bool printText(String szPrinterName, String data)
        {
            //for more character sets: http://www.ascii-codes.com/

            //for another charsets:
            //Encoding ascii = Encoding.GetEncoding("ascii");
            //Encoding windows = Encoding.GetEncoding("Windows-1252");

            //you must use this encoding  for  brazilian portuguese special characters: ^,~,ç,á...
            Encoding brazilian = Encoding.GetEncoding("IBM860");

            byte[] byteData = brazilian.GetBytes(data);

            RawPrinterHelper.SendBytesToPrinter(szPrinterName, byteData);

            return(true);
        }
 private void openCashDrawer()
 {
     try
     {
         PrinterSettings settings = new PrinterSettings();
         //Metodo 1
         byte[] codeOpenCashDrawer = new byte[] { 27, 112, 0, 25, 250 };
         IntPtr pUnmanagedBytes    = new IntPtr(0);
         pUnmanagedBytes = Marshal.AllocCoTaskMem(5);
         Marshal.Copy(codeOpenCashDrawer, 0, pUnmanagedBytes, 5);
         RawPrinterHelper.SendBytesToPrinter(settings.PrinterName, pUnmanagedBytes, 5);
         Marshal.FreeCoTaskMem(pUnmanagedBytes);
     }
     catch
     {
         MessageBox.Show("No se pudo abrir Caja Registradora, abrir de manera manual", "Sistema Facturación", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Example #23
0
        public void PrintDocument(int copies = 1)
        {
            if (_buffer == null)
            {
                return;
            }
            if (copies <= 0)
            {
                copies = 1;
            }

            for (var i = 0; i < copies; i++)
            {
                if (!RawPrinterHelper.SendBytesToPrinter(_printerName, _buffer))
                {
                    throw new ArgumentException("Não foi possível acessar a impressora: " + _printerName);
                }
            }
        }
Example #24
0
        private void etiquetaproduccion(string WHS, string NumeroTarima, string SolicitudTraslado, string Transferencia, string Recepcion, string Fecha)
        {
            //string sUrlRequest = "http://api.ccfn.com.mx/json/productos/" + txtproducto.Text;
            //var json = new WebClient().DownloadString(sUrlRequest);

            //var list = JsonConvert.DeserializeObject<List<Producto>>(json);

            string s = "^XA\n";

            s += "^FW\n";
            s += "^CFA,40\n";
            s += "^FO50,30^FDSucursal: " + WHS + "^FS\n";
            s += "^CFA,40\n";
            s += "^FO550,150^FDTarima ^FS\n";
            s += "^FO590,220^FD" + NumeroTarima + " ^FS\n";
            s += "^CFA,35\n";
            s += "^FO40,100^FDSolicitud de Traslado^FS\n";
            s += "^BY3,2,70\n";
            s += "^FO40,150^BC^FD" + SolicitudTraslado + "^FS\n";
            //'---------------- Tranferencias generadas para la Tarima 1
            s += "^ CFA,40\n";
            s += "^ FO40,350^FDTransferencia^FS\n";
            s += "^ FO40,380^FD" + Transferencia + "^FS\n";

            //'-------------------
            s += "^ CFA,35\n";
            s += "^FO350,450^FDRecepcion^FS\n";
            s += "^BY3,2,70";
            s += "^FO350,500^BC^FD" + Recepcion + "^FS\n";
            s += "^CFA,20\n";
            s += "^FO40,570^FDFecha: " + Fecha + "^FS\n";
            s += "^XZ\n";


            var bytes = Encoding.ASCII.GetBytes(s);

            // Send a printer-specific to the printer.
            RawPrinterHelper.SendBytesToPrinter("\\\\192.168.0.10\\s01-recepcion-srv10", bytes, bytes.Length);
            //MessageBox.Show("Data sent to printer.");
            //}
        }
        public void SendBytesToPrinterTest()
        {
            string szPrinterName = GetCurrentPrinterName();

            if (!string.IsNullOrEmpty(szPrinterName))
            {
                bool expected = true;
                bool actual   = false;

                unsafe
                {
                    int   number = 123456;
                    void *p      = &number;
                    var   intPtr = new IntPtr(p);
                    actual = RawPrinterHelper.SendBytesToPrinter(szPrinterName, intPtr, sizeof(int));
                }
                Assert.AreEqual(expected, actual, "Failed.  Win32 problem?");
            }
            else
            {
                Assert.Fail("Printer name is unavailable.  No printer installed or selected?");
            }
        }
Example #26
0
 public void InitializePrint()
 {
     RawPrinterHelper.SendBytesToPrinter(_printerName, _command.InitializePrint.Initialize());
 }
Example #27
0
 //Emphasized mode is turned on
 public bool emphasizedModeText(string szPrinterName)
 {
     int[] mode = { 27, 33, 8 };
     RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(mode));
     return(true);
 }
Example #28
0
        //*************************** barcode  commands **********************************



        //function to print Qrcode
        public bool printQrcode(String Strdata, String szPrinterName)
        {
            int length = Strdata.Length + 3; //  string size  + 3
            //int length = Strdata.Length;
            byte length_low_byte = 0, length_high_byte = 0;

            length_low_byte  = (byte)(length & 0xff);        //low byte used in function 180
            length_high_byte = (byte)((length >> 8) & 0xff); //high byte in function 180


            //if you don't want to use shift operator:
            //int length_low_byte = length % 256;
            //int length_high_byte = length / 256;


            initializePrinter(szPrinterName);

            //<Function ESC a n> Select justification
            int[] escAn = { 27, 97, 0 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(escAn));



            //<Function GS L> Set left margin
            int[] fGsl = { 29, 76, 0, 0 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(fGsl));

            //<Function 165> GS ( k p L p H cn fn n (cn = 49,fn = 65)  QR Code: Select the model
            int[] f165 = { 29, 40, 107, 4, 0, 49, 65, 50, 0 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(f165));


            //<Function 167> GS ( k pL pH cn fn n (cn = 49, fn = 67) QR Code: Set the size of module
            int[] f167 = { 29, 40, 107, 3, 0, 49, 67, 4 }; //  size of qrcode:  1-16
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(f167));



            //<Function 169> GS ( k pL pH cn fn n (cn = 49, fn = 69) QR Code: Select the error correction level
            int[] f169 = { 29, 40, 107, 3, 0, 49, 69, 48 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(f169));


            //<Function 180> GS ( k pL pH cn fn m d1…dk (cn = 49, fn = 80) QR Code: Store the data in the symbol storage area
            //pL and pH are the low- and high-order bytes of a 16-bit integer value that specifies the length in bytes of the following data

            int[] f180 = { 29, 40, 107, length_low_byte, length_high_byte, 49, 80, 48 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(f180));



            //send string/url to printer
            //RawPrinterHelper.SendASCiiToPrinter(szPrinterName, Strdata);
            RawPrinterHelper.SendStringToPrinter(szPrinterName, Strdata);

            //<Function 181> GS ( k pL pH cn fn m (cn = 49, fn = 81) QR Code: Print the symbol data in the symbol storage area
            int[] f181 = { 29, 40, 107, 3, 0, 49, 81, 48 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(f181));

            //


            return(true);
        }
Example #29
0
 //Underline mode is turned on
 public bool UnderlineModeText(string szPrinterName)
 {
     int[] underline = { 27, 33, 128 };
     RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(underline));
     return(true);
 }
Example #30
0
        //initialize printer

        //ESC @
        public void initializePrinter(String szPrinterName)
        {
            int[] command = { 27, 64 };
            RawPrinterHelper.SendBytesToPrinter(szPrinterName, intTobyte(command));
        }