ZEBRA 打印时顶部和左侧始终留有 1 厘米边距

问题描述 投票:0回答:2

我使用 ZEBRA 打印机打印 pdf。 ZEBRA 纸张尺寸为 10 厘米 x 7 厘米。我总是有1厘米的差距。! enter image description here

我怎样才能摆脱这个差距?

protected void Page_Load(object sender, EventArgs e)
{
    // step 1
    // need to write to memory first due to IE wanting
    // to know the length of the pdf beforehand
    MemoryStream m = new MemoryStream();

    Rectangle pageSize = new Rectangle(100f, 70f) ;

    pageSize.BorderColor = BaseColor.BLACK;
    pageSize.BorderWidth = 4f;
    pageSize.BorderWidthBottom = 2f;

    Document document = new Document(pageSize, 0f, 0f, 0f, 0f);
    try
    {
        // step 2: we set the ContentType and create an instance of the Writer
        Response.ContentType = "application/pdf";
        PdfWriter writer = PdfWriter.GetInstance(document, m);
        writer.CloseStream = false;

        // step 3
        document.Open();

        // step 4
       document.Add(new Paragraph("This is a custom size"));
    }
    catch (DocumentException ex)
    {
        Console.Error.WriteLine(ex.StackTrace);
        Console.Error.WriteLine(ex.Message);
    }
    // step 5: Close document
    document.Close();

    // step 6: Write pdf bytes to outputstream
    Response.OutputStream.Write(m.GetBuffer(), 0, m.GetBuffer().Length);
    Response.OutputStream.Flush();
    Response.OutputStream.Close();
    m.Close();
}

override protected void OnInit(EventArgs e)
{    
    InitializeComponent();
    base.OnInit(e);
}

private void InitializeComponent()
{
    this.Load += new System.EventHandler(this.Page_Load);
}

预先感谢您, 史蒂夫

PS:我已经设置了 margin = 0

Document document = new Document(pageSize, 0f, 0f, 0f, 0f);

c# itext zebra-printers
2个回答
0
投票

只需设置您的 ZEBRA 配置


0
投票

尝试发送 zpl.left_position SGD 命令:

例如SGD.SET("zpl.left_position", "0", 连接);

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