PDF JavaScript不再在Edge

时间:2017-08-09 21:21:56

标签: javascript pdf fpdf

我在通过浏览器查看的FPDF / PHP生成的PDF中运行JavaScript时遇到了一些问题。该脚本应该显示打印对话框或消息框。此功能已经使用多年,但似乎已经通过对Edge / Windows的重新更新而被打破。经过调查,似乎基于浏览器/查看器的行为是不同的。

完全更新的Windows 10上的结果:

  • Edge:PDF在Edge自己的查看器中打开,打印对话框显示
  • Firefox:PDF在Firefox自己的查看器中打开,出现打印对话框
  • 资源管理器:PDF将在默认PDF查看器中打开,并显示打印对话框

与消息框​​的调用相同。

我正在扩展FPDF,如FPDF JavaScript support示例中指定的那样。

<?

require('fpdf.php');

class PDF_JavaScript extends FPDF {

    // My code start
    function OpenPrintDialog()
    {
        $this->IncludeJS("print(true);");
    }

    function ShowMessageMessage($text)
    {
        $this->IncludeJS("app.alert('$text', 3);");
    }
    // My code end

    protected $javascript;
    protected $n_js;

    function IncludeJS($script, $isUTF8=false) {
        if(!$isUTF8)
            $script=utf8_encode($script);
        $this->javascript=$script;
    }

    function _putjavascript() {
        $this->_newobj();
        $this->n_js=$this->n;
        $this->_put('<<');
        $this->_put('/Names [(EmbeddedJS) '.($this->n+1).' 0 R]');
        $this->_put('>>');
        $this->_put('endobj');
        $this->_newobj();
        $this->_put('<<');
        $this->_put('/S /JavaScript');
        $this->_put('/JS '.$this->_textstring($this->javascript));
        $this->_put('>>');
        $this->_put('endobj');
    }

    function _putresources() {
        parent::_putresources();
        if (!empty($this->javascript)) {
            $this->_putjavascript();
        }
    }

    function _putcatalog() {
        parent::_putcatalog();
        if (!empty($this->javascript)) {
            $this->_put('/Names <</JavaScript '.($this->n_js).' 0 R>>');
        }
    }
}

$pdf = new PDF_JavaScript();
$pdf->AddPage();
$pdf->SetFont('Arial', '', 20);
$pdf->Text(90, 50, 'Print me!');

$pdf->OpenPrintDialog();
// or
//$pdf->ShowMessageMessage('Message box me!');

$pdf->Output();

?>

是不是可以指望在不同的浏览器/查看器中允许使用PDF JavaScript功能?

1 个答案:

答案 0 :(得分:1)

  

是不是可以指望在不同的浏览器/查看器中允许使用PDF JavaScript功能?

这是不可能的。您尝试运行的JavaScript仅适用于Adobe Acrobat和Reader以及其他一些桌面PDF查看器和一个我知道的移动PDF查看器。该代码在Edge中不起作用,因为Edge有自己的内置PDF查看器,Explorer将使用Adobe Reader或Acrobat,Foxit,Nuance,Nitro或其他一些操作系统级别的Reader来显示PDF,这就是你获得对话框的原因

简而言之,您无法依赖正确的查看器/浏览器/操作系统组合来运行PDF中的任何JavaScript。