diff options
author | Saketh1499 | 2021-07-30 16:28:27 +0530 |
---|---|---|
committer | Saketh1499 | 2021-07-30 16:28:27 +0530 |
commit | 2ea5fde67291c53e48cdd081d4e572defcf6a4cf (patch) | |
tree | e99fa42cd83b454c53501a9539970460c27bd156 /pdf/cert_new.inc | |
parent | 2461ab7f94663e2e5add018731231b84d5b0200e (diff) | |
download | esim_lab_migration-2ea5fde67291c53e48cdd081d4e572defcf6a4cf.tar.gz esim_lab_migration-2ea5fde67291c53e48cdd081d4e572defcf6a4cf.tar.bz2 esim_lab_migration-2ea5fde67291c53e48cdd081d4e572defcf6a4cf.zip |
Modifying the certificate
Diffstat (limited to 'pdf/cert_new.inc')
-rwxr-xr-x | pdf/cert_new.inc | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/pdf/cert_new.inc b/pdf/cert_new.inc index 911b122..0d0ac5b 100755 --- a/pdf/cert_new.inc +++ b/pdf/cert_new.inc @@ -69,8 +69,8 @@ function generate_pdf() $pdf->SetFont('Times', 'I', 15); //$pdf->SetFont('Arial', 'BI', 25); $pdf->SetTextColor(129, 80, 47); - $pdf->Cell(320, 12, $data3->name_title . ' ' . $data3->name, '0', '1', 'C'); - $pdf->Ln(0); + $pdf->Cell(320, 10, $data3->name_title . ' ' . $data3->name, '0', '1', 'C'); + //$pdf->Ln(0); $pdf->SetFont('Times', 'I', 14); if (strtolower($data3->branch) != "others") { $pdf->SetFont('Times', 'I', 14); @@ -87,18 +87,28 @@ function generate_pdf() //$pdf->Ln(0); $pdf->SetTextColor(129, 80, 47); $pdf->SetFont('Times','I',14); - $pdf->Cell(320, 12, $data3->lab_title, '0', '1', 'C'); + $pdf->Cell(320, 8, $data3->lab_title, '0', '1', 'C'); $pdf->SetTextColor(0, 0, 0); $pdf->Ln(0); //$txt= $pdf->WriteHTML("<span>under</span>"); $pdf->SetFont('Times', 'I', 14); $pdf->Cell(320, 8, 'to a eSim-only Lab', '0', '1', 'C'); $pdf->Ln(0); + $pdf->Cell(320, 5, '', '0', '1', 'C'); + $pdf->SetX(125); + $pdf->SetTextColor(0, 0, 0); + $pdf->write(0, 'The work done is available at '); + $pdf->SetFont('Times', 'U' , '14'); + $pdf->SetTextColor(139, 69, 19); + $pdf->write(0, 'https://esim.fossee.in/', 'https://esim.fossee.in/'); + $pdf->SetFont('', ''); + $pdf->SetTextColor(0, 0, 0); + $pdf->write(0, '.', '.'); } //strtolower($data3->branch) != "others" else { $pdf->SetFont('Times', 'I', 14); $pdf->SetTextColor(0, 0, 0); - $pdf->Cell(320, 12, 'from the Department of ' . $data3->department . ', ', '0', '1', 'C'); + $pdf->Cell(320, 8, 'from the Department of ' . $data3->department . ', ', '0', '1', 'C'); $pdf->Ln(0); $pdf->SetTextColor(0, 0, 0); $pdf->Cell(240, 8, $data3->university . ' college', '0', '1', 'C'); @@ -106,11 +116,21 @@ function generate_pdf() $pdf->Cell(240, 8, 'has successfully migrated the', '0', '1', 'C'); $pdf->Ln(0); $pdf->SetTextColor(139, 69, 16); - $pdf->Cell(320, 12, $data3->lab_title, '0', '1', 'C'); + $pdf->Cell(320, 8, $data3->lab_title, '0', '1', 'C'); $pdf->SetTextColor(0, 0, 0); $pdf->Ln(0); $pdf->SetFont('Times', '', 14); $pdf->Cell(320, 8, 'to a eSim-only Lab', '0', '1', 'C'); + $pdf->Cell(320, 5, '', '0', '1', 'C'); + $pdf->SetX(125); + $pdf->SetTextColor(0, 0, 0); + $pdf->write(0, 'The work done is available at '); + $pdf->SetFont('Times', 'U' , '14'); + $pdf->SetTextColor(139, 69, 19); + $pdf->write(0, 'https://esim.fossee.in/', 'https://esim.fossee.in/'); + $pdf->SetFont('', ''); + $pdf->SetTextColor(0, 0, 0); + $pdf->write(0, '.', '.'); //$pdf->Cell(240, 8, 'He/she has coded ' . $number_of_example . ' solved examples using DWSIM from the', '0', '1', 'C'); //$pdf->Ln(0); //$pdf->Cell(240, 8, 'Book: ' . $data2->book . ', Author: ' . $data2->author . '.', '0', '1', 'C'); @@ -155,7 +175,7 @@ function generate_pdf() $pdf->Ln(10); $sign1 = $path . "/pdf/images/sign1.png"; //$sign2 = $path . "/pdf/images/sign2.png"; - $pdf->Image($sign1, $pdf->GetX()+110, $pdf->GetY() + 40, 85, 0); + $pdf->Image($sign1, $pdf->GetX()+118, $pdf->GetY() + 40, 85, 0); //$pdf->Image($sign2, $pdf->GetX()+160, $pdf->GetY() + 45, 85, 0); $pdf->Image($pngAbsoluteFilePath, $pdf->GetX()+15, $pdf->GetY()+70, 30, 0); $fossee = $path . "/pdf/images/fossee.png"; |