It was asked here if it was possible to delete text from an existing PDF using FPDI but it seems it isn't.
So, is there a way to partially import a page with FPDI. That is, only import, let's say, the last half of an existing PDF's page?
$pdf = new Fpdi;
$pageId = $pdf->ImportPage($pageNo);
$pdf->AddPage('P', "Letter");
$pdf->useImportedPage($pageId); // Import only the lower half of this page since I don't need the upper half...
The general answer from the developer FAQ is
Simple and correct answer:
and related
So unless somebody has developed a supporting page redaction ability, all FPDI does is import (copy) a whole page of contents but without some of the associated links. Note according to comment by Jan Slabon of Setasign since version 2.4 the pages external links may be retained.