打印适合页面

发布于 2024-11-06 20:38:25 字数 388 浏览 0 评论 0原文

我需要打印一个标签以适应页面。 我正在尝试这个,但打印比页面大,宽度和高度似乎太多

private void PrinterPrintPage(object sender, PrintPageEventArgs e)
{
    var b = Tasks.Pop();

    if (b.Label == null) 
        b.Label = GetLabelImage(b.Codice, b.ColoreID);

    var rect = e.PageBounds;
    e.Graphics.DrawImage(b.Label, rect);
    e.HasMorePages = Tasks.ContainTasks();

    _printedCount++;
}

I need to print a label to fit the page.
I'm tryng this but print big than page, width and height seems to be to much

private void PrinterPrintPage(object sender, PrintPageEventArgs e)
{
    var b = Tasks.Pop();

    if (b.Label == null) 
        b.Label = GetLabelImage(b.Codice, b.ColoreID);

    var rect = e.PageBounds;
    e.Graphics.DrawImage(b.Label, rect);
    e.HasMorePages = Tasks.ContainTasks();

    _printedCount++;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

把昨日还给我 2024-11-13 20:38:25

根据 有关 PrintPageEventArgs.PageBounds 的 MSDN 文档,

大多数打印机无法在页面的最边缘打印。

...首先,尝试将 PageBounds 更改为 MarginBounds。如果这没有帮助,请将边界矩形向页面中心“缩小”,以便远离边缘。

As per MSDNs documentation on PrintPageEventArgs.PageBounds,

Most printers cannot print at the very edge of the page.

...first of all, try changing PageBounds to MarginBounds. If this doesn't help, "deflate" the bounds rectangle towards the centre of the page so you move away from the edges.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文