Trong bài viết này tôi sẽ chia sẽ code mẫu sử dụng thư viên TCPDF để tạo file pdf mà tôi đã tốn rất nhiều thời gian để mày mò, hi vọng sẽ giúp được anh chị rút ngắn thời gian trong quá trình đụng đến việc code xuất file pdf bằng php
TCPDF là một thư viện mã nguồn mở mạnh mẽ viết bằng PHP, cho phép bạn tạo các tài liệu PDF trực tiếp từ mã PHP mà không cần đến các phần mềm bên ngoài. Nó được sử dụng rộng rãi trong các ứng dụng web để xuất báo cáo, biên lai, hóa đơn, hoặc các tài liệu khác dưới định dạng PDF
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
<?php namespace AppNewTech\Includes\Classes; use AppNewTech\Includes\Classes\ExportCourseCertificate; class ExportCourseCertificate{ function __construct() { if ( ! class_exists( 'TCPDF' ) ) { require_once STOCK_DIR . 'includes/tcpdf/tcpdf.php'; } $this->ajaxs(); } function ajaxs(){ $ajaxs = array( 'download_course_certificate' => 'download_course_certificate', 'view_course_certificate' => 'view_course_certificate' ); if($ajaxs){ foreach($ajaxs as $action => $function){ add_action("wp_ajax_".$action, array($this, $function ) ); add_action("wp_ajax_nopriv_".$action, array($this, $function) ); } } } function setCertificateTitle($pdf){ $imagePath = STOCK_DIR.'assets/images/title-certificate-2.png'; // Thiết lập vị trí và kích thước $x = 70; // Tọa độ X tính từ lề trái (mm) $y = 35; // Tọa độ Y tính từ lề trên (mm) $w = 150; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->Image($imagePath, $x, $y, $w, $h, '', '', 'T', false, 300, '', false, false, 0, false, false, false); } function setStudentName($pdf,$first_name){ //297 x 210 $html = ' <div style="font-size:17px" > <p style="font-style: italic; font-weight: 600; letter-spacing: 2px; text-align: center; ">Chúc mừng Anh/Chị</p> <p style="font-size: 25px; color: #7b491c; text-transform: uppercase; text-align: center;">'.$first_name.'</p></div>'; // Thiết lập vị trí và kích thước $x = 0; // Tọa độ X tính từ lề trái (mm) $y = 66; // Tọa độ Y tính từ lề trên (mm) $w = 297; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->writeHTMLCell($w, $h, $x, $y, $html, 1, 1, 0, true, '', true); } function setcourseName($pdf,$name){ //297 x 210 $html = ' <div style="font-size:17px" > <p style="text-align: center; text-transform: uppercase; font-weight: 700;">Đã hoàn thành khóa học</p> <p style="text-align: center; text-transform: uppercase; font-weight: 700; color: #7b491c; font-size:20px;">'.$name.'</p></div>'; // Thiết lập vị trí và kích thước $x = 0; // Tọa độ X tính từ lề trái (mm) $y = 127; // Tọa độ Y tính từ lề trên (mm) $w = 297; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->writeHTMLCell($w, $h, $x, $y, $html, 1, 1, 0, true, '', true); } function setLogo($pdf){ $imagePath = STOCK_DIR.'assets/images/logo.png'; // Thiết lập vị trí và kích thước $x = 230; // Tọa độ X tính từ lề trái (mm) $y = 10; // Tọa độ Y tính từ lề trên (mm) $w = 60; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->Image($imagePath, $x, $y, $w, $h, '', '', 'T', false, 300, '', false, false, 0, false, false, false); } function setTeacher($pdf,$giang_vien,$chuc_danh_giang_vien){ //297 x 210 $html = ' <div style="font-size:17px" > <p style="text-align:center; text-transform: uppercase;">'.$chuc_danh_giang_vien.'</p> <p></p> <p></p> <p></p> <p style="text-align:center; text-transform: uppercase;">'.$giang_vien.'</p></div>'; // Thiết lập vị trí và kích thước $x = 140; // Tọa độ X tính từ lề trái (mm) $y = 160; // Tọa độ Y tính từ lề trên (mm) $w = 150; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->writeHTMLCell($w, $h, $x, $y, $html, 1, 1, 0, true, '', true); } function setIssueDate($pdf,$issueDate,$code){ //297 x 210 $html = ' <div style="font-size:17px" > <p style="text-align:center; text-transform: uppercase;">'.$issueDate.'</p> <p></p> <p style="text-align:center; text-transform: uppercase;">Ngày cấp</p> <p style="text-align:center;">Mã chứng nhận: '.$code.'</p> </div>'; // Thiết lập vị trí và kích thước $x = 15; // Tọa độ X tính từ lề trái (mm) $y = 160; // Tọa độ Y tính từ lề trên (mm) $w = 90; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->writeHTMLCell($w, $h, $x, $y, $html, 1, 1, 0, true, '', true); } function setStudentPosition($pdf,$company,$position){ $html = ' <div > <p style="font-size:17px;">Đơn vị: '.$company.'</p> <p style="font-size:17px;">Chức danh: '.$position.'</p> </div>'; // Thiết lập vị trí và kích thước $x = 70; // Tọa độ X tính từ lề trái (mm) $y = 100; // Tọa độ Y tính từ lề trên (mm) $w = 100; // Chiều rộng của khối (mm) $h = 0; // Chiều cao tự động (0 để tự động tính toán dựa trên nội dung) // Vẽ khối HTML tại vị trí đã thiết lập $pdf->writeHTMLCell($w, $h, $x, $y, $html, 1, 1, 0, true, '', true); } function setCertificateBackground($pdf,$pageWidth,$pageHeight){ // Đường dẫn hình ảnh $img_url = STOCK_DIR.'assets/images/certificate-3.png'; $img_info = @getimagesize($img_url); // Kích thước hình ảnh gốc (px) $imgWidthPx = $img_info[0]; $imgHeightPx = $img_info[1]; // Chuyển đổi kích thước hình ảnh từ px sang mm $imgWidthMm = ($imgWidthPx / 96) * 25.4; $imgHeightMm = ($imgHeightPx / 96) * 25.4; // Tính toán tỷ lệ để hình ảnh bao phủ toàn bộ trang $pageRatio = $pageWidth / $pageHeight; $imgRatio = $imgWidthMm / $imgHeightMm; if ($pageRatio > $imgRatio) { // Chiều rộng trang lớn hơn tỷ lệ hình ảnh => hình ảnh sẽ cao hơn trang $scaledHeight = $pageHeight; $scaledWidth = $imgWidthMm * ($pageHeight / $imgHeightMm); } else { // Chiều cao trang lớn hơn tỷ lệ hình ảnh => hình ảnh sẽ rộng hơn trang $scaledWidth = $pageWidth; $scaledHeight = $imgHeightMm * ($pageWidth / $imgWidthMm); } // Vị trí để căn giữa hình ảnh $x = ($pageWidth - $scaledWidth) / 2; $y = ($pageHeight - $scaledHeight) / 2; $pdf->Image( $img_url, $x, $y, $scaledWidth, $scaledHeight, '', '', '', true, 300, '', false, false, 0, '', '', false ); } function setBoderBottomCertitficateTitle($pdf){ // Thiết lập đường nét đứt màu đỏ, độ dày 0.5mm $pdf->SetLineWidth(1); $pdf->SetDrawColor(123, 73, 28); // Lấy chiều rộng của trang PDF $pageWidth = $pdf->getPageWidth(); $lineWidth = 100; // Chiều dài của đường kẻ là 100mm // Tính toán vị trí của đường kẻ để nó nằm ở giữa trang $x1 = ($pageWidth - $lineWidth) / 2; $y1 = 61; // Độ cao của đường kẻ từ lề trên của trang $x2 = $x1 + $lineWidth; $y2 = $y1; // Đường kẻ ngang nên y1 và y2 giống nhau // Vẽ đường kẻ $pdf->Line($x1, $y1, $x2, $y2); } function view_course_certificate() { global $wpdb; $course_id = (int) $_GET['course_id']; $certificate_id = (int) $_GET['certificate_id']; $certificate = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."es_certificate` where `id` = '{$certificate_id}'"); $code = $certificate[0]->code; $issueDate = date('d/m/Y', strtotime($certificate[0]->issueDate)); $course = get_post($course_id); $chuc_danh_giang_vien = !empty(get_post_meta($course_id,"chuc_danh_giang_vien",true)) ? get_post_meta($course_id,"chuc_danh_giang_vien",true) : "Giảng viên"; $giang_vien = get_post_meta($course_id,"giang_vien",true); if(isset($_GET['user_id'])){ $user_id = (int) $_GET['user_id']; }else{ $user_id = get_current_user_id(); } $user_info = get_userdata($user_id); $first_name = $user_info->first_name; $company = get_user_meta($user_id,"company",true); $position = get_user_meta($user_id,"position",true); $pageWidth = 297 ; // mm 1123px $pageHeight = 210; // mm 794px $args = array( 'title' => $course->post_title, 'subject' => $course->post_title, 'header' => false, 'footer' => false, 'orientation' => 'landscape', 'unit' => 'mm', 'format' => array($pageWidth, $pageHeight) ); $pdf = new \TCPDF($args['orientation'], $args['unit'], $args['format'], true, 'UTF-8', false); // Thiết lập không có lề $pdf->SetMargins(0, 0, 0); $pdf->SetAutoPageBreak(false, 0); // Thiết lập font chữ $pdf->SetFont('dejavusans', '', 12); // Thêm một trang mới $pdf->AddPage(); $tagvs = array( 'p' => array( 0 => array('h' => 0, 'n' => 0), 1 => array('h' => 0, 'n'=> 0.5) ) ); $pdf->setHtmlVSpace($tagvs); //$pdf->setCellHeightRatio(1.6); // Thêm hình nền $this->setCertificateBackground($pdf,$pageWidth,$pageHeight); $this->setCertificateTitle($pdf); $this->setStudentName($pdf,$first_name); $this->setStudentPosition($pdf,$company,$position); $this->setcourseName($pdf,$course->post_title); $this->setLogo($pdf); // $this->setBoderBottomCertitficateTitle($pdf); $this->setIssueDate($pdf,$issueDate,$code); $this->setTeacher($pdf,$giang_vien,$chuc_danh_giang_vien); $fileName = $code."-".sanitize_title($course->post_title)."-".sanitize_title( $issueDate).".pdf"; $pdf->Output($fileName, 'I'); die(); } function download_course_certificate() { global $wpdb; $course_id = (int) $_GET['course_id']; $certificate_id = (int) $_GET['certificate_id']; $certificate = $wpdb->get_results("SELECT * FROM `".$wpdb->prefix."es_certificate` where `id` = '{$certificate_id}'"); $code = $certificate[0]->code; $issueDate = date('d/m/Y', strtotime($certificate[0]->issueDate)); $course = get_post($course_id); $chuc_danh_giang_vien = !empty(get_post_meta($course_id,"chuc_danh_giang_vien",true)) ? get_post_meta($course_id,"chuc_danh_giang_vien",true) : "Giảng viên"; $giang_vien = get_post_meta($course_id,"giang_vien",true); if(isset($_GET['user_id'])){ $user_id = (int) $_GET['user_id']; }else{ $user_id = get_current_user_id(); } $user_info = get_userdata($user_id); $first_name = $user_info->first_name; $company = get_user_meta($user_id,"company",true); $position = get_user_meta($user_id,"position",true); $pageWidth = 297 ; // mm 1123px $pageHeight = 210; // mm 794px $args = array( 'title' => $course->post_title, 'subject' => $course->post_title, 'header' => false, 'footer' => false, 'orientation' => 'landscape', 'unit' => 'mm', 'format' => array($pageWidth, $pageHeight) ); $pdf = new \TCPDF($args['orientation'], $args['unit'], $args['format'], true, 'UTF-8', false); // Thiết lập không có lề $pdf->SetMargins(0, 0, 0); $pdf->SetAutoPageBreak(false, 0); // Thiết lập font chữ $pdf->SetFont('dejavusans', '', 12); // Thêm một trang mới $pdf->AddPage(); $tagvs = array( 'p' => array( 0 => array('h' => 0, 'n' => 0), 1 => array('h' => 0, 'n'=> 0.5) ) ); $pdf->setHtmlVSpace($tagvs); //$pdf->setCellHeightRatio(1.6); // Thêm hình nền $this->setCertificateBackground($pdf,$pageWidth,$pageHeight); $this->setCertificateTitle($pdf); $this->setStudentName($pdf,$first_name); $this->setStudentPosition($pdf,$company,$position); $this->setcourseName($pdf,$course->post_title); $this->setLogo($pdf); // $this->setBoderBottomCertitficateTitle($pdf); $this->setIssueDate($pdf,$issueDate,$code); $this->setTeacher($pdf,$giang_vien,$chuc_danh_giang_vien); $fileName = $code."-".sanitize_title($course->post_title)."-".sanitize_title( $issueDate).".pdf"; $pdf->Output($fileName, 'D'); die(); } } new ExportCourseCertificate(); |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress