source

mpdf에서 css 파일을 추가하는 방법

lovecheck 2023. 9. 9. 09:37
반응형

mpdf에서 css 파일을 추가하는 방법

mpdf를 이용해서 html을 pdf로 변환하려고 합니다.문제는 pdf 파일에 css를 적용할 수 없다는 것입니다..

여기 제 php 코드가 있습니다.

<?php

    $html = $divPrint;
    $mpdf=new mPDF();
    $stylesheet = file_get_contents('pdf.css');
    $mpdf->WriteHTML($stylesheet,1);
    $mpdf->WriteHTML($html,2);
    $mpdf->Output();
    exit;

?>

그것이 하는 일은 이 php 페이지에서 ajax를 통해 html을 가져가는 것입니다.하지만 그것이 주는 출력은 내가 작성한 CSS와 함께 제공되지 않습니다.

지금 그렇게 하라고 말씀해 주시겠습니까?

 <?php

$html = $divPrint;

include('mpdf.php'); // including mpdf.php
$mpdf=new mPDF();
$stylesheet = file_get_contents('pdf.css'); // external css
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($html,2);
$mpdf->Output();
exit;

?>

먼저 html을 지정합니다.$htmlmpdf를 포함합니다.php 파일.

언급URL : https://stackoverflow.com/questions/15519335/how-to-add-css-file-in-mpdf

반응형