------------------------image---------------------
<?php
header('content-type:image/png');
$img=imagecreate(500,300);
$back=imagecolorallocate($img,225,22
5,255);
$for=imagecolorallocate($img,0,0,0);
imagestring($img,12,150,50,"vapm
almala",$for);
imagepng($img);
?>
Output:
--------------------------------pdf----------------------------
<?php
require('[Link]');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',20);
$pdf->cell(50,60,"welcome to php pdf");
$pdf->output();
?>
Output: