|
|
|
แปลงไฟล์ JPG เป็นไฟล์ PDF แปลงไฟล์ภาพหลายไฟล์เป็นไฟล์ PDF เดียว php |
|
|
|
|
|
|
|
ใช้ mpdf ได้แล้วครับ ด้วยการสร้าง HTML Tag แล้วเรียกรูปภาพต่าง ๆ มาแสดงครับ จากนั้นก็ Generate เป็น PDF ได้เลยครับ
|
|
|
|
|
Date :
2015-10-30 16:23:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมจะ input อะครับแบบว่าเลือกรูปแล้วให้มันแปลงเป็น pdf แล้วเข้าฐานข้อมูลอะครับ
|
|
|
|
|
Date :
2015-10-30 22:45:33 |
By :
max10156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตามที่แนะนำครับ ลองดู
|
|
|
|
|
Date :
2015-10-31 08:34:33 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2015-10-31 11:33:01 |
By :
max10156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mPDF error: Unable to create output file: MyPDF/MyPDF.pdf มันขึ้นงี้อะครับ
|
|
|
|
|
Date :
2015-10-31 15:39:04 |
By :
max10156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทดที่ครับFolder/Permission มันอยูตรงไหนอะครับ
|
|
|
|
|
Date :
2015-11-02 11:34:01 |
By :
max10156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
require_once('mpdf/mpdf.php'); //ที่อยู่ของไฟล์ mpdf.php ในเครื่องเรานะครับ
ob_start(); // ทำการเก็บค่า html นะครับ
?>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<style type="text/css">
<!--
@page rotated{ size:landscape;}
.stylel{
font-family:"TH SarabunPSK";
font-size: 18pt;
font-weight: bold;
}.style2{
font-family: "TH SarabunPSK";
font-size: 16pt;
font-weight: bold;
}
.style3{
font-family:"TH SarabunPSK";
font-size: 16pt;
}
.style5 {cursor: hand; font-weight: normal; color: #000000;}
.style9 {font-family: Tahoma; font-size: 12px; }
.style11 {font-size: 12px}
.style13{font-size: 9}
.style16{font-size: 9; font-weight: bold;}
.style17{font-size: 12px; font-weight: bold;}
-->
</style>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div class=Section2>
<table width="704" border="0" align="center" cellpadding="0 " cellspacing="0">
<tr>
<?php
?>
<td width="291" align="center"><span class="style2"> รูปที่ใช้ไปงาน
<?php ?> (ต.ค.<?php ?>-ก.ย.<?php ?>)</span></td>
</tr>
<?php
for($i=0;$i<count($_FILES["filUpload"]["name"]);$i++)
{
if($_FILES["filUpload"]["name"][$i] != "")
{?>
<tr>
<td height="22" align="center"><?php echo $i;?></td>
<td align="right" class="style3"><?php echo $_FILES["filUpload"]["name"][$i];?></td>
<td align="center" class="style3"></td>
</tr>
<?php $i++; }
}?>
<?php
$html = ob_get_contents();
ob_end_clean();
$pdf = new mPDF('th','A4-L','0','THSaraban');
$pdf->SetAutoFont();
$pdf->SetDisplayMode('fullpage');
$pdf->WriteHTML($html,2);
$pdf->Output("MyPDF/MyPDF.pdf");
?>
ดาวโหลดรายงานในรูปแบบ PDF <a href="MyPDF/MyPDF.pdf">คลิกที่นี้</a>
</body>
</html>
|
|
|
|
|
Date :
2015-11-02 11:38:28 |
By :
max10156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|