PHP - mPDF设置分辨率

时间:2013-09-06 22:13:35

标签: php mpdf

是否可以使用mPDF类设置PDF文件的分辨率。我正在尝试保存主要是黑色但有一些细白线的图像,我无法在PDF中看到那些白线,所以我认为我必须提高分辨率。

编辑:

这是我的代码。首先,我将页面保存为html:

<?php 
    $fileID = uniqid();
    $_SESSION['fileID'] = $fileID;
    file_put_contents("$fileID.html", ob_get_contents());
    header("Location: createPDF.php"); 
?>

然后我将此页面(其中包含svg图像)转换为pdf:

<?php

    include 'MPDF57/mpdf.php';
    session_start();

    $fileID = $_SESSION['fileID'];
    $yourHtml = "$fileID.html";
    $mpdf=new mPDF('', '', 0, '', 0, 0, 0, 0, 0, 0);
    $mpdf->SetDisplayMode('fullpage');
    $mpdf->WriteHTML(file_get_contents('main.css'),1);
    $mpdf->WriteHTML(file_get_contents($yourHtml)); 
    $mpdf->Output();
    unlink($yourHtml);
    unset($_SESSION['fileID']);
    header("index.php");
    exit;

?>

现在我需要知道是否有办法改变pdf文件的分辨率。

1 个答案:

答案 0 :(得分:2)

在我通过修改config.php

中的变量来解决这个问题之前,我遇到了这个问题
$this->img_dpi = 96;    // Default dpi to output images if size not defined

我添加了一个大图像并修改了dpi,它有效。