本文整理汇总了PHP中Zend_Pdf::getNamedDestination方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Pdf::getNamedDestination方法的具体用法?PHP Zend_Pdf::getNamedDestination怎么用?PHP Zend_Pdf::getNamedDestination使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Pdf
的用法示例。
在下文中一共展示了Zend_Pdf::getNamedDestination方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testProcessing
public function testProcessing()
{
$pdf = new Zend_Pdf();
$page1 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$page2 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$page3 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
// not actually included into pages array
$pdf->pages[] = $page1;
$pdf->pages[] = $page2;
$this->assertTrue(count($pdf->getNamedDestinations()) == 0);
// require_once 'Zend/Pdf/Destination/Fit.php';
$destination1 = Zend_Pdf_Destination_Fit::create($page1);
$destination2 = Zend_Pdf_Destination_Fit::create($page2);
$action1 = Zend_Pdf_Action_GoTo::create($destination1);
$pdf->setNamedDestination('GoToPage1', $action1);
$this->assertTrue($pdf->getNamedDestination('GoToPage1') === $action1);
$this->assertTrue($pdf->getNamedDestination('GoToPage9') === null);
$pdf->setNamedDestination('Page2', $destination2);
$this->assertTrue($pdf->getNamedDestination('Page2') === $destination2);
$this->assertTrue($pdf->getNamedDestination('Page9') === null);
$pdf->setNamedDestination('Page1', $destination1);
$pdf->setNamedDestination('Page1_1', Zend_Pdf_Destination_Fit::create(1));
$pdf->setNamedDestination('Page9_1', Zend_Pdf_Destination_Fit::create(9));
// will be egnored
$action3 = Zend_Pdf_Action_GoTo::create(Zend_Pdf_Destination_Fit::create($page3));
$pdf->setNamedDestination('GoToPage3', $action3);
$this->assertTrue(strpos($pdf->render(), '[(GoToPage1) <</Type /Action /S /GoTo /D [3 0 R /Fit ] >> (Page1) [3 0 R /Fit ] (Page1_1) [1 /Fit ] (Page2) [4 0 R /Fit ] ]') !== false);
}
示例2:
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
$pdf = new Zend_Pdf();
$page1 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$page2 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
$page3 = $pdf->newPage(Zend_Pdf_Page::SIZE_A4);
// Page created, but not included into pages list
$pdf->pages[] = $page1;
$pdf->pages[] = $page2;
$destination1 = Zend_Pdf_Destination_Fit::create($page2);
$destination2 = Zend_Pdf_Destination_Fit::create($page3);
// Returns $page2 object
$page = $pdf->resolveDestination($destination1);
// Returns null, page 3 is not included into document yet
$page = $pdf->resolveDestination($destination2);
$pdf->setNamedDestination('Page2', $destination1);
$pdf->setNamedDestination('Page3', $destination2);
// Returns $destination2
$destination = $pdf->getNamedDestination('Page3');
// Returns $destination1
$pdf->resolveDestination(Zend_Pdf_Destination_Named::create('Page2'));
// Returns null, page 3 is not included into document yet
$pdf->resolveDestination(Zend_Pdf_Destination_Named::create('Page3'));