<?php
namespace app\index\controller;
// use think\Controller;
use think\Loader;
class Test
{
public function index()
{
Loader::import('tcpdf.tcpdf');
$pdf = new \tcpdf('A4-L');
$pdf->AddPage();
$pdf->writeHTML('<h2 style="color:red;text-align:center;">Hello World</h3>', true, false, true, false, '');
$pdf->Output('1.pdf', 'I');
// $pdf->Output('1.pdf', 'D');
// 在"D"输出方式下,下载下来的1.pdf文件能正常打开并显示
}
} 最佳答案