Laravel 5.1 Snappy pdf图像无法在pdf文件中呈现

时间:2015-10-23 20:04:16

标签: laravel pdf-generation wkhtmltopdf

我正在使用 barryvdh / laravel-snappy 生成pdf文件。我有两个图像文件1. yourlogohere.png位于public / image /文件夹中2. logo2.png位于public以外的文件夹中,即storage / app / logo并获取此文件我定义了一个路径(www.example.org) /logo/logo.png)并使用以下代码来访问它。

public function logo($filename)
{
    $file = Storage::disk('local_logo')->get($filename);
    $mime = 'image/png';
    return (new Response($file, 200))->header('Content-Type', $mime);
}

问题:

当我使用以下代码从包含第一个文件的html生成pdf时,pdf包含yourlogohere.png图像

$snappy = App::make('snappy.pdf');
$html='<img src="http://www.example.org/images/yourlogohere.png" class="img-responsive" alt="Your Logo Here">';
$snappy->generateFromHtml($html, $path,[],$overwrite = true);

your logo here image appeared in pdf

但是当我为第二个文件做同样的事情时,pdf不会渲染图像。(当我在浏览器中打开链接http://www.example.org/logo/logo2.png时,我得到图像)。 我缺少什么?

$snappy = App::make('snappy.pdf');
$html='<img src="http://www.example.org/logo/logo2.png" class="img-responsive" alt="Your Logo Here">';
$snappy->generateFromHtml($html, $path,[],$overwrite = true);

image is not rendered only a rectangle appeared

谢谢,

ķ

2 个答案:

答案 0 :(得分:3)

我认为我遇到的问题是,访问图像的路径是通过auth,即使用户在访问snappy时登录,wkhtmltopdf exe也会在一个完全不同的会话中运行。现在正确的修复方法是将图像嵌入到发送到snappy而不是链接的html中,我不知道该怎么办?欢迎任何建议。

<强>更新 我能够将图像转换为数据:image / png; base64,并将其嵌入到html中。

$html = view('mytemplate.default', compact('variable1', 'variable2'))->render();

/*Convert logo image to base64 before pdf conversion*/

//search for <img src="http://example.org/mytemplate/logo/logo1.png">" and replace the src with data:image/png;base64,
$search = '/(<img\s+src=["\'])([^"\']+)(\/mytemplate\/logo\/)(.*)(\.)(.*?)(["\']\s+[^>]+>)/'; 

$html = preg_replace_callback($search, function ($matches) use ($invoicedetail) {

    $filename = $matches[4] . $matches[5] . $matches[6];
    $file = Storage::disk('local_logo')->get('yourlogohere.png');
    $mime = "image/png";
    $mytemplate = MyTemplate::where('logo_filename', '=', $filename)->first();
    if (!empty($mytemplate)) {
        $file = Storage::disk('local_logo')->get($mytemplate->logo_filename);
        $mime = $mytemplate->logo_mime;
    }
    $base64 = 'data:' . $mime . ';base64,' . base64_encode($file);
    return $matches[1] . $base64 . $matches[7];
}, $html);

$pdf_filename = 'template' . $mytemlpate->id . '.pdf';
$path = storage_path('app' . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . $filename);
$snappy = App::make('snappy.pdf');

答案 1 :(得分:3)

你也可以这样做:

<img src="data:image/jpeg;base64,
{{ base64_encode(@file_get_contents(url('your.image.url'))) }}">