首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >tcpdf不支持https?

tcpdf不支持https?
EN

Stack Overflow用户
提问于 2019-01-06 19:38:19
回答 1查看 644关注 0票数 0

当我们将以下行添加到htaccess文件时:

代码语言:javascript
复制
 RewriteCond %{SERVER_PORT} 80
 RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]

我们收到以下错误:

代码语言:javascript
复制
Warning: getimagesize(/icon/logo_print.jpg): failed to open stream: No such file or directory in /home2/example/public_html/tcpdf/include/tcpdf_images.php on line 171

Warning: imagecreatefromjpeg(/icon/logo_print.jpg): failed to open stream: No such file or directory in /home2/example/public_html/tcpdf/tcpdf.php on line 7039
TCPDF ERROR: [Image] Unable to get the size of the image: /image/1/SB_m.gif

相关代码:

代码语言:javascript
复制
class MYPDF extends FPDI { //  extends TCPDF 

  public function Header() { // Page header

  global $dbcmpName;

$html = <<<EOF
<table cellpadding="2" >
    <tr>
        <td><img src="/icon/logo_print.jpg" alt="$dbcmpName Logo" style="border:none;" /></td>
        <td><span class="header1" >$dbcmpName</span>
        </td>
    </tr>
</table>
EOF;

    // output the HTML content:
    $this->SetFont('verdana', '', 9);
    $this->writeHTML($html, true, false, true, false, '');
  }

 ...


      if ( file_exists($_SERVER['DOCUMENT_ROOT'] . '/image/' . $prodFamilly . '/'. $db->f('prd_photo')) )  { 
$html .= '
        <img src="/image/' . $prodFamilly . '/' . $db->f('prd_photo') . '" alt="' . $imgAlt . '" />     
';
      } 


// output the HTML content:
$pdf->writeHTML($html, true, false, true, false, '');

...

注意:有一个类似的问题- TCPDF cache problems when using https,但在这个问题中,他们使用了不同的方式来显示图像,没有超文本标记语言,当尝试修改建议的答案时,我在tcpdf文件中找不到建议更改的代码,可能是因为我们使用了不同版本的tcpdf:

代码语言:javascript
复制
// File name   : tcpdf.php
// Version     : 6.2.13
// Begin       : 2002-08-03
// Last Update : 2015-06-18
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-01-14 18:23:59

使用tcpdf版本6.2.26而不是6.2.13似乎可以解决我的问题。

他们在版本6.2.25中更改了img URL,也许这就是我需要的修复

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/54061129

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档