使用 FPDI 保留内部链接

Posted

技术标签:

【中文标题】使用 FPDI 保留内部链接【英文标题】:Preserve internal links using FPDI 【发布时间】:2015-07-10 04:37:54 【问题描述】:

我正在尝试将一些文本动态添加到现有的 pdf 文件中。

我已经尝试将 FPDF 和 TCPDF 与 FPDI 结合来导入现有的 pdf。没关系。 但是,正如预期的那样,原始 pdf 中的所有现有链接都消失了。

然后,我尝试使用这个 FPDI 扩展来保留链接:

fpdi_with_annnots https://gist.github.com/andreyvit/2020422

起初,它只保留外部链接,但后来,创建者修改为也包括内部链接。但是这个扩展是旧的,不再维护并且不再适用于带有 FPDI 和 TCPDF 的**内部链接**(外部链接被保留,没关系!)。

有人尝试(参见上面的 Github 链接)使其与 TCPDF 一起工作并更改了这段代码:

$this->PageLinks[$this->page][] = $link;

到这里:

$this->Link(
$link[0]/$this->k,
($this->fhPt-$link[1]+$link[3])/$this->k, 
$link[2]/$this->k, 
-$link[3]/$this->k, 
$link[4]
);

然后,过了一段时间,有人说需要改成这样:

$this->Link(
    $link[0]/$this->k,
    ($this->hPt - $link[1])/$this->k,
    $link[2]/$this->k,
    $link[3]/$this->k,
    $link[4]
);

但它也不再起作用了。

问题:

1) 有谁知道如何更改此代码以保留内部链接? 或:2) 有谁知道导入、生成和保留超链接的 fpdi_with_annots 的替代方法?

提示: 也许使用 FPDF 的“书签”扩展名会有所帮助,而不是 Addlink() 和 Setlink(): http://fpdf.de/downloads/addons/1/

【问题讨论】:

您可以尝试使用旧版本的 FPDI ( 你有没有得到任何帮助(除了将 FPDI 降级到 您好,这是一个很好的问题。这方面有什么进展吗? 【参考方案1】:

TCPD + FPDI 方法也保持内部和外部链接

这将在处理您的 PDF 时保留您的内部和外部链接。它尚未经过全面测试,但应该可以正常工作。

<?php

use setasign\Fpdi\PdfParser\PdfParser;
use setasign\Fpdi\PdfParser\Type\PdfArray;
use setasign\Fpdi\PdfParser\Type\PdfDictionary;
use setasign\Fpdi\PdfParser\Type\PdfIndirectObjectReference;
use setasign\Fpdi\PdfParser\Type\PdfType;
use setasign\Fpdi\PdfReader\PageBoundaries;
use setasign\Fpdi\Tcpdf\Fpdi;

class TcpdfFpdiCustom extends Fpdi

    public $pagesList;
    
    public function importPage($pageNumber, $box = PageBoundaries::CROP_BOX, $groupXObject = true)
    
        $pageId = parent::importPage($pageNumber, $box, $groupXObject);

        $links = [];
        $reader = $this->getPdfReader($this->currentReaderId);
        $parser = $reader->getParser();

        if (empty($this->pagesList)) 
            $this->readAllPages($parser);
        

        $pageObj = $reader->getPage($pageNumber)->getPageObject();
        $annotationsObject = PdfDictionary::get(PdfType::resolve($pageObj, $parser), 'Annots');
        $annotations = PdfType::resolve($annotationsObject, $parser);

        if ($annotations->value) 
            foreach ($annotations->value as $annotationRef) 
                $annotation = PdfType::resolve($annotationRef, $parser);

                if (PdfDictionary::get($annotation, 'Subtype')->value !== 'Link' ||
                    !$a = PdfDictionary::get($annotation, 'A')
                ) 
                    continue;
                

                $link = PdfType::resolve($a, $parser);
                $linkType = PdfDictionary::get($link, 'S')->value;

                if (in_array($linkType, ['URI', 'GoTo']) &&
                    ($rect = PdfDictionary::get($annotation, 'Rect')) &&
                    $rect instanceof PdfArray
                ) 
                    $rect = $rect->value;

                    $links[] = [
                        $rect[0]->value,
                        $rect[1]->value,
                        $rect[2]->value - $rect[0]->value,
                        $rect[1]->value - $rect[3]->value,
                        $this->getAnnotationLink($link, $linkType)
                    ];
                
            
        

        $this->importedPages[$pageId]['links'] = $links;

        return $pageId;
    

    public function useTemplate($tpl, $x = 0, $y = 0, $width = null, $height = null, $adjustPageSize = false)
    
        $size = parent::useTemplate($tpl, $x, $y, $width, $height, $adjustPageSize);

        $links = $this->importedPages[$tpl]['links'];
        $pxToU = $this->pixelsToUnits(1);
        foreach ($links as $link) 
            // When is integer, it means that is an internal link
            if (is_int($link[4])) 
                $l = $this->AddLink();
                $this->SetLink($l, 0, $link[4]);
                $link[4] = $l;
            

            $this->Link(
                $link[0] * $pxToU,
                $this->getPageHeight() - $link[1] * $pxToU,
                $link[2] * $pxToU,
                $link[3] * $pxToU,
                $link[4]
            );
        

        return $size;
    

    public function readAllPages(PdfParser $parser)
    
        $readPages = function ($kids, $count) use (&$readPages, $parser) 
            $kids = PdfArray::ensure($kids);
            $isLeaf = ($count->value === \count($kids->value));

            foreach ($kids->value as $reference) 
                $reference = PdfIndirectObjectReference::ensure($reference);

                if ($isLeaf) 
                    $this->pagesList[] = $reference;
                    continue;
                

                $object = $parser->getIndirectObject($reference->value);
                $type = PdfDictionary::get($object->value, 'Type');

                if ($type->value === 'Pages') 
                    $readPages(PdfDictionary::get($object->value, 'Kids'), PdfDictionary::get($object->value, 'Count'));
                 else 
                    $this->pagesList[] = $object;
                
            
        ;

        $catalog = $parser->getCatalog();
        $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $parser);
        $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $parser);
        $kids = PdfType::resolve(PdfDictionary::get($pages, 'Kids'), $parser);
        $readPages($kids, $count);
    

    public function getAnnotationLink(PdfType $link, string $linkType)
    
        // External links
        if ($linkType === 'URI') 
            return PdfDictionary::get($link, 'URI')->value;
        

        // Internal links
        if (!empty($this->pagesList)) 
            $pageObj = PdfDictionary::get($link, 'D')->value[0];
            foreach ($this->pagesList as $index => $page) 
                if ($page->generationNumber === $pageObj->generationNumber && $page->value === $pageObj->value) 
                    return $index + 1;
                
            
        

        return null;
    

用法

用这个替换 Fpdi 构造函数:

$pdf = new TcpdfFpdiCustom();

使用的 Composer 包:

"require": 
    "setasign/fpdi": "^2.3",
    "tecnickcom/tcpdf": "^6.4",

【讨论】:

【参考方案2】:

在过去的 4 年里,我一直在使用 TCPDF、FPDF、FPDI、Imagick、Ghostscript,我确实理解您面临的挑战,但不幸的是,该技术还没有出现。所以答案是否定的。

【讨论】:

以上是关于使用 FPDI 保留内部链接的主要内容,如果未能解决你的问题,请参考以下文章

使用 AJAX 编写内部链接

谷歌分析,内部链接分析?

rmarkdown 中的内部链接不起作用

wkhtmltopdf 内部链接

C++不使用匿名命名空间实现内部链接

从文章中的介绍中获取内部链接