TCPDF:一份 pdf 中的混合方向

发布于 2024-12-06 13:08:51 字数 94 浏览 1 评论 0原文

一个 PDF 中是否可以混合方向。例如一些页面纵向和一些横向?或者可以旋转内容吗?我可以看到你可以在构造函数中设置整体方向,但没有看到任何东西。

多发性硬化症

Is it possible to have mixed orientation in one PDF. E.g. some pages portrait and some landscape? Or is it possible to rotate content? I can see that you can set the overall orientation can be set in the constructor, but didn't see anything.

MS

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

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

发布评论

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

评论(2

若能看破又如何 2024-12-13 13:08:51

实际上非常简单,您只需添加页面即可:

// protrait
$tcpdf->addPage( 'P', 'LETTER' );

// landscape
$tcpdf->addPage( 'L', 'LETTER' );

It's actually pretty easy all yo have to do is when you add a page:

// protrait
$tcpdf->addPage( 'P', 'LETTER' );

// landscape
$tcpdf->addPage( 'L', 'LETTER' );
黎歌 2024-12-13 13:08:51

要旋转内容,您可以使用以下代码。

$pdf->StartTransform();
$pdf->Rotate(-90);
$pdf->Cell(0,0,'This is a sample data',1,1,'L',0,'');
$pdf->StopTransform();

For rotating the content you can use the following code.

$pdf->StartTransform();
$pdf->Rotate(-90);
$pdf->Cell(0,0,'This is a sample data',1,1,'L',0,'');
$pdf->StopTransform();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文