打印文档缩放以适合页面

发布于 2024-12-20 12:49:47 字数 87 浏览 0 评论 0原文

假设我有一个页数未知的 PrintDocument。我怎样才能缩放它以适应一页上的所有内容?

编辑: 我试图在打印时实现“适合页面”之类的目标。

Let’s say I have a PrintDocument with unknown number of pages. How could I scale it to fit everything on one page?

Edit:
I am trying to achieve something like “fit to page” when printing.

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

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

发布评论

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

评论(1

很酷又爱笑 2024-12-27 12:49:47

如果您不知道文档有多少页,您将永远无法找到正确的缩放比例。您必须花一些精力找出页面数量,然后才能设置缩放比例。

编辑

测量页面的一个提示:“盲”打印文档(不会对打印机说,将其打印到您将通过 PrinterSettings.CreateMeasurementGraphics() 获得的图形,如 Hans Passant 中所述他的评论)。然后你就会得到页数。然后,您可以设置缩放比例并第二次打印文档,但这次直接打印到所需的打印机。

If you don't know how many pages your document has, you will never ever be able to find out the right scaling. You have to put some effort in finding out the amount of pages and then you will be able to set the scaling.

Edit:

One hint for measuring the pages: Print out the document "blind" (will say not to the printer, print it to a graphics you will get with PrinterSettings.CreateMeasurementGraphics() like Hans Passant stated in his comment). Then you will have the amount of pages. You can then set the scaling and print the document the second time, but this time direct to the desired printer.

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