 |
มีวิธีเปลี่ยน html เป็น pdf โดยที่ไม่ต้องเขียนใหม่ไหม แบบ print to pdf ของ chome |
|
 |
|
|
 |
 |
|
ลองดูครับ
Code (PHP)
<!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" />
<style type="text/css">
#printable { display: none; }
.table tr td{
font-family:Tahoma, Geneva, sans-serif;
font-size: 16px;
line-height:1.3em;
/* font-weight:bold;*/
/* text-shadow: 1px 1px 1px rgba(0,0,0,0.004);*/
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
}
@media print
{ #non-printable { display: none; }
#printable {
display: inherit;
font-family:Tahoma, Geneva, sans-serif;
font-size: 16px;
line-height:1.3em;
/* font-weight:bold;*/
/* text-shadow: 1px 1px 1px rgba(0,0,0,0.004);*/
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important; }
}
</style>
</head>
<body>
<div id="non-printable">
</div>
<div id="printable">
<table border="0" width="100%" cellspacing="0" cellpadding="0" class="table">
<tr>
<th colspan="2"><h1>ทดสอบ Auto print</h1></th>
</tr>
</table>
</div>
<script> window.print(); </script>
</body>
</html>
|
 |
 |
 |
 |
Date :
2018-04-20 14:37:00 |
By :
arm8957 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขั้นแรกคุณต้องเลือกว่า
1. "คุณจะเหนื่อยเอง" คือคุณต้องแก้ไข Output ให้ออกมาในรูปแบบ PDF เลย โดยใช้ PDF Class เช่น MPDF, TCPDF ฯลฯ
PDF Class บางตัวสามารถ convert จาก HTML เป็น PDF ได้เลย ลองศึกษาดู
2. "ให้ User เปลี่ยน(บังคับ ขู่เข็น) เปลี่ยนเครื่องปริ้นท์เอง" ซึ่งก็ไม่ได้ซับซ้อนอะไรมากมาย คำว่าทำไม่เป็นก็จะแก้ไขได้โดยการอธิบาย ทุกๆ ที่ย่อมมีการเปลี่ยนแปลงครับ อย่างที่ผมเจออยู่โคตรเหนื่อย 555+
|
 |
 |
 |
 |
Date :
2018-04-20 23:11:57 |
By :
arm8957 |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
หากจะทำก็ต้องทำ หากจะเขียนก็ต้องเขียนครับ มันไม่มีทางเอาแค่ url มาเปลี่ยนเป็น pdf ได้หรอกครับ
อยู่ที่ว่าจะชอบ class ตัวไหน
|
 |
 |
 |
 |
Date :
2018-04-23 14:59:04 |
By :
apisitp |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|