Corel
Corel

Reputation: 1

How would I change a particular string in a PDF file?

With the help of a PHP Class called EZPDF.

Upvotes: 0

Views: 81

Answers (1)

simplyharsh
simplyharsh

Reputation: 36373

Try,

<?php 
 include ('class.ezpdf.php'); 
 $pdf = new Cezpdf();
 $pdf->selectFont('./fonts/Helvetica.afm'); 
 $pdf->ezText('Hello World!',50); 
 $pdf->ezStream(); 
?>

Upvotes: 1

Related Questions