그리스 자모가??로 바뀌다PHPWord로 docx를 pdf로 변환하면?

1675 단어 dompdfhelpphpphpword


11월 17일 20일.
설명: 1
정답: 1
0

다음과 같은 간단한 laravel artisan 명령을 만들었습니다.
Artisan::command('test:pdf',function(){
    \PhpOffice\PhpWord\Settings::setPdfRendererName(\PhpOffice\PhpWord\Settings::PDF_RENDERER_DOMPDF);
    \PhpOffice\PhpWord\Settings::setPdfRendererPath('.');

    $tmpFile = storage_path().'/contracts/test.docx';
    $outfile = storage_path().'/contracts/test.pdf';

    $phpWord = \PhpOffice\PhpWord\IOFactory::load($tmpFile);
    $phpWord->save($outfile,'PDF');

});
이것은 docx 파일을 받아서 pdf로 변환합니다.그러나 명확한 이유로 docx는 그리스 자모를 포함하고 pdf 형식으로 나타나면... 으로 변환됩니다.
Open Full Question

좋은 웹페이지 즐겨찾기