그리스 자모가??로 바뀌다PHPWord로 docx를 pdf로 변환하면?
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
Reference
이 문제에 관하여(그리스 자모가??로 바뀌다PHPWord로 docx를 pdf로 변환하면?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/pcmagas/greek-letters-are-replaced-with-once-i-convert-a-docx-into-pdf-usimng-phpword-11ja
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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');
});
Reference
이 문제에 관하여(그리스 자모가??로 바뀌다PHPWord로 docx를 pdf로 변환하면?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pcmagas/greek-letters-are-replaced-with-once-i-convert-a-docx-into-pdf-usimng-phpword-11ja텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)