laravel 5 html 到 pdf 查看问题

laravel 5 html to pdf view issue

我正在尝试将 html 保存为 pdf。但是,pdf 中的内容似乎呈现得不好。我正在使用来自 maatwebsite 的插件。这是我试过的代码

控制器

Excel::create('test',function($file){
        $file->sheet('Sheet1', function ($sheet){

            $sheet->loadView('excel');
            $sheet->setAutoSize(true);
        });

    })->store('pdf',storage_path('uploaded-excel'));

查看

<body>
    <p>test</p>
    <img src="images/hierarchy.png"/>
</body>

结果

但是当我删除 img 标签时,尺寸本身看起来正常

我错过了什么?

我使用 https://github.com/barryvdh/laravel-dompdf 插件而不是使用 maatwebsite 的内置功能