将多个文本字段写入 php 中的现有 pdf 文档

Writing multiple text fields to existing pdf document in php

我是一个向现有 pdf 文档添加文本的工作程序。

问题是我不知道如何添加多个?

    <?php
/* pdf_creator.php */

$county = $_POST['county'];

require_once __DIR__ . '/vendor/autoload.php';

$pdf = new mPDF();

$pdf->SetImportUse();
$pdf->SetSourceFile('document.pdf');

$tplId = $pdf->ImportPage(1);
$pdf->UseTemplate($tplId);

//text number 1
$pdf->SetX(10);
$pdf->SetY(17.5);
$pdf->WriteHTML($county);

$pdf->Output('newdocument.pdf');

header('Location: newdocument.pdf');

如何将具有不同 x,y 坐标的另一个文本添加到现有 pdf 中?

<?php
/* pdf_creator.php */

$county = $_POST['county'];
$county_one = $_POST['county_one'];

require_once __DIR__ . '/vendor/autoload.php';

$pdf = new mPDF();

$pdf->SetImportUse();
$pdf->SetSourceFile('document.pdf');

$tplId = $pdf->ImportPage(1);
$pdf->UseTemplate($tplId);

//text number 1
$pdf->SetX(10);
$pdf->SetY(17.5);
$pdf->WriteHTML($county);

//text number 2
$pdf->SetX(20);
$pdf->SetY(27.5);
$pdf->WriteHTML($county_one);

$pdf->Output('newdocument.pdf');

header('Location: newdocument.pdf');