MPD(버전 6.1)를 사용하여 HTML 페이지를 PDF 파일로 변환하면 변환이 성공할 수 있습니다. 코드는 다음과 같습니다.
<code>$html = "对盲人初学者来说,它无需任何额外的修改。"; // $html = "These are the most used acronyms throughout this manual."; include './mpdf/mpdf.php'; $mpdf=new mPDF('+aCJK'); $mpdf->autoScriptToLang = true; $mpdf->autoLangToFont = true; $mpdf->WriteHTML($html); $mpdf->Output();</code>
imagick을 사용하여 PDF를 이미지로 변환할 때
PDF 파일에 중국어가 없으면 변환 성공
PDF 파일에 중국어가 있으면, 오류가 직접 보고됩니다: , 오류 코드:
<code>Fatal error: Uncaught exception 'ImagickException' with message 'Failed to read the file' in /home/www/test/index-back.php:26 Stack trace: #0 /home/www/test/index-back.php(26): Imagick->readimage('/home/www/test/...') #1 /home/www/test/index-back.php(48): pdf2png('/home/www/test/...', '/home/www/test/...') #2 {main} thrown in /home/www/test/index-back.php on line 26</code>
PDF를 이미지 코드로 변환:
<code>function pdf2png($PDF, $Path){ if(!extension_loaded('imagick')){ return false; } if(!file_exists($PDF)){ return false; } $IM = new imagick(); $IM->setResolution(120, 120); $IM->setCompressionQuality(100); $IM->readImage($PDF); foreach($IM as $Key => $Var){ $Var->setImageFormat('png'); $Filename = $Path.'/'.md5($Key.time()).'.png'; if($Var->writeImage($Filename)==true){ $Return[]= $Filename; } } return $Return; } $pdf = __DIR__.'/1.pdf'; $path = __DIR__.'/images'; $data = pdf2png($pdf, $path ); var_dump($data);</code>
<code>使用 MPDF 将HTML转为PDF,然后将该PDF转为PNG图片时有中文怎么才能不报错?? </code>
MPD(버전 6.1)를 사용하여 HTML 페이지를 PDF 파일로 변환하면 변환이 성공할 수 있습니다. 코드는 다음과 같습니다.
<code>$html = "对盲人初学者来说,它无需任何额外的修改。"; // $html = "These are the most used acronyms throughout this manual."; include './mpdf/mpdf.php'; $mpdf=new mPDF('+aCJK'); $mpdf->autoScriptToLang = true; $mpdf->autoLangToFont = true; $mpdf->WriteHTML($html); $mpdf->Output();</code>
imagick을 사용하여 PDF를 이미지로 변환할 때
PDF 파일에 중국어가 없으면 변환 성공
PDF 파일에 중국어가 있으면, 오류가 직접 보고됩니다: , 오류 코드:
<code>Fatal error: Uncaught exception 'ImagickException' with message 'Failed to read the file' in /home/www/test/index-back.php:26 Stack trace: #0 /home/www/test/index-back.php(26): Imagick->readimage('/home/www/test/...') #1 /home/www/test/index-back.php(48): pdf2png('/home/www/test/...', '/home/www/test/...') #2 {main} thrown in /home/www/test/index-back.php on line 26</code>
PDF를 이미지 코드로 변환:
<code>function pdf2png($PDF, $Path){ if(!extension_loaded('imagick')){ return false; } if(!file_exists($PDF)){ return false; } $IM = new imagick(); $IM->setResolution(120, 120); $IM->setCompressionQuality(100); $IM->readImage($PDF); foreach($IM as $Key => $Var){ $Var->setImageFormat('png'); $Filename = $Path.'/'.md5($Key.time()).'.png'; if($Var->writeImage($Filename)==true){ $Return[]= $Filename; } } return $Return; } $pdf = __DIR__.'/1.pdf'; $path = __DIR__.'/images'; $data = pdf2png($pdf, $path ); var_dump($data);</code>
<code>使用 MPDF 将HTML转为PDF,然后将该PDF转为PNG图片时有中文怎么才能不报错?? </code>