使用TCPDF生成PDF时出现连接超时问题

时间:2015-06-19 10:16:00

标签: php pdf tcpdf

如果我们从下面的代码中移除<td>,则会生成PDF(使用TCPDF),否则会将错误视为Connection Timeout

$curImageSrc = is_file("$image_dir/".$img['filename']) == true ? image_tag("../$image_dir/".$img['filename'], array('size'=>'200x150','align'=>'center','alt'=>$img['caption'])) : '';
        print <<<EOT
          <td width=25% $tdvalue_css>
            <div align="center">
              $curImageSrc
              <br />
              <u style="font-weight:bold">{$img['image_caption']}</u>
            </div>&nbsp;
          </td>

    EOT;

请指导我,我们如何解决这个问题?我尝试使用div-table结构但不工作,表结构在PDF输出中受到干扰。

0 个答案:

没有答案