是否可以从以前由tcpdf添加的PDF文件中删除图像:
$pdf->Image();
或删除由以下内容添加的图层:
$pdf->startLayer('layer1', true, true);
$pdf->SetFontSize(18);
$pdf->SetTextColor(0,127,0);
$txt = 'Using the startLayer() method you can group PDF objects into layers. This text is on "layer1".';
$pdf->Write(0, $txt, '', 0, 'L', true, 0, false, false, 0);
$pdf->endLayer();