Получите всегда запас на 1 см сверху и слева на ZEBRA Printing - PullRequest
1 голос
/ 20 января 2012

Я печатаю PDF на свой принтер ZEBRA. размер бумаги ZEBRA 10 см х 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: я уже установил поле = 0 Document document = new Document(pageSize, 0f, 0f, 0f, 0f);

1 Ответ

0 голосов
/ 24 января 2012

просто установите свою конфигурацию ZEBRA

...