将PDF文档打印到esc / pos热敏打印机

问题描述 投票:1回答:1

我们正在使用xamarin.forms开发POS APP,因为我们需要将收据打印到通过LAN连接的esc / pos热敏打印机。我们通过App提供多语言支持,通过更改代码页完美地使用esc / pos命令打印多种语言。但它只为一些受支持的语言工作,对于其他语言它的打印垃圾字符(不可读的)。

所以我们想为收据创建一个pdf并打印出来。我们尝试创建pdf,然后转换为位图,然后使用esc pos命令发送到打印机,但它不打印任何东西。

    public BitImage(String filename)
    {
        Java.IO.File file = new Java.IO.File(filename);
        var pdfRenderer = new PdfRenderer(ParcelFileDescriptor.Open(file, ParcelFileMode.ReadOnly));
        PdfRenderer.Page page = pdfRenderer.OpenPage(0);
        Bitmap bmp = Bitmap.CreateBitmap(page.Width, page.Height, Bitmap.Config.Argb8888);
        page.Render(bmp, null, null, PdfRenderMode.ForPrint);
        load(bmp);
    }


private void load(Bitmap bmp)
{
    int w = bmp.Width;
    int h = bmp.Height;

    int bw = (w + 7) / 8;
    if (bw > 255)
        bw = 255;

    int bh = h / 8;
    if (bh > 24)
    {
        bh = 24;
    }

    initData(bw * 8, bh * 8);

    for (int y = 0; y < h; y++)
    {
        for (int x = 0; x < w; x++)
        {
            if (bmp.GetPixel(x, y) == Color.Black)
                setPixel(x, y);
        }
    }
}

private void initData(int w, int h)
{
    width = w;
    height = h;
    pitch = h / 8;
    data = new byte[w * pitch];
}

private void setPixel(int x, int y)
{
    if (x >= width || y >= height)
    {
        return;
    }
    int mask = (0x0080 >> (y % 8));
    data[(x * pitch) + (y / 8)] |= (byte)mask;
}


public void PrintData() 
{
    byte[] CMD_INIT = { 0x1B, 0x40 };
    byte[] CMD_UPLOAD_IMAGE = { 0x1D, 0x2A, 0, 0 };
    byte[] CMD_PRINT_IMAGE = { 0x1D, 0x2F, 0 };
    byte[] CMD_CUT = { 0x1D, 0x56, 0x01 };
    CMD_UPLOAD_IMAGE[2] = (byte)(width / 8);
    CMD_UPLOAD_IMAGE[3] = (byte)(height / 8);

    #region Print Via Lan
    Socket pSocket = new Socket(SocketType.Stream, ProtocolType.IP);
    pSocket.SendTimeout = 1500;
    pSocket.Connect("192.168.15.168", 9100);
    pSocket.Send(CMD_INIT);
    pSocket.Send(CMD_UPLOAD_IMAGE);
    pSocket.Send(data);
    pSocket.Send(CMD_PRINT_IMAGE);
    pSocket.Send(CMD_CUT);
    pSocket.Close();
    #endregion
}

请帮帮我,不管我是以正确的方式做的吗?或者有更好的方法来做同样的事情吗?

xamarin.forms xamarin.android thermal-printer escpos
1个回答
0
投票

您可以使用SkiaSharp等库来以任何语言从您的数据制作图像/ PDF,并使用任何打印机正确打印。

我已经创建了一个示例来演示如何使用C#中的ESC \ POS打印机正确打印图像:GitHub code repo

© www.soinside.com 2019 - 2024. All rights reserved.