从PDF中删除图像或图层

时间:2018-02-14 15:31:57

标签: php pdf tcpdf

是否可以从以前由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();

0 个答案:

没有答案
相关问题