如何在TCPDF中设置默认打开页面?

时间:2015-07-31 14:10:14

标签: tcpdf

我正在使用TCPDF生成PDF。当用户打开文件时,我想在第3页而不是第1页打开PDF。

我似乎记得在其他PDF库中这是可能的,但我无法在TCPDF的API文档中找到任何内容。

这可能吗?

1 个答案:

答案 0 :(得分:0)

如果文件在浏览器中打开,则可能 使用setDestination();创建链接:

$pdf->AddPage();
$pdf->setDestination('chapter1', 0, '');
$pdf->Cell(0, 10, 'Chapter 1', 0, 1, 'L');
$pdf->AddPage();
$pdf->setDestination('chapter2', 0, '');
$pdf->Cell(0, 10, 'Chapter 2', 0, 1, 'L');

通过链接在所选页面上打开文件:
http://www.path.to/Your/file/name.pdf#chapter2

Tcpdf example;