composer 설치가 지원되지 않는 버전에서 사용
1. wkhtmltopdf 다운로드 - OS에 맞게 다운로드를 한다.
https://wkhtmltopdf.org/downloads.html
2. .rpm 파일의 압축을 풀어준다.
- 7-Zip 을 추천
3. wkhtmltox-0.12.5-1.centos6.x86_64.cpio 압축을 풀어준다.
4. usr/local 폴더에 bin, include, lib, share 폴더가 나온다.
이 폴더 안의 파일들을 각 위치에 맞게 실서버에 올린다
5. 코드 작성
index.php
<form name="WkhtmlPdfForm" id="WkhtmlPdfForm" action="/pdf_down.php" method="post" accept-charset="UTF-8" enctype="multipart/form-data">
파라미터들
</form>
pdf_down.php
<?
header('Content-Type: text/html; charset=UTF-8');
$url = "http://www.naver.com";
$down_name = "test";
//tmp폴더의 test.pdf 저장
exec('/usr/local/bin/wkhtmltopdf -L 10mm -R 10mm -T 10mm -B 10mm "'.$url.'" "tmp/'.$down_name.'.pdf" 2>&1');
//tmp폴더의 test.pdf를 클라이언트가 다운받을 수 있도록
$sFilePath = 'tmp/'.$down_name.'.pdf';
$sFileName = $down_name.'.pdf';
header("Content-Disposition: attachment; filename=\"".$sFileName."\"");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".strval(filesize($sFilePath)));
header("Cache-Control: cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
echo file_get_contents($sFilePath);
flush();
unlink($sFilePath);//tmp폴더의 test.pdf 파일을 삭제
?>
6. wkhtmltopdf font 적용 안될 때
usr/share/fonts/원하는 폰트.ttf 을 업로드한다.(폰트 설치)
'프로그래밍 > PHP' 카테고리의 다른 글
laravel homestead 설치 (windows 10) (0) | 2021.12.20 |
---|---|
wkhtmltopdf 사용하기 - 윈도우10 (0) | 2019.12.27 |
php, html 코드 pdf로 변환하는 라이브러리 (0) | 2019.12.26 |
카카오톡 챗봇 (3) 오픈i빌더 - 간단하게 스킬서버 구축하기 (2) | 2019.12.26 |
카카오톡 챗봇 (2) 스킬서버 없이 카카오톡 챗봇 만들기-오픈빌더 (0) | 2019.12.26 |
WRITTEN BY
,