2016-03-01 101 views
0

我想把HTML並將其保存爲PDF。但是,似乎pdf內容不能很好地呈現。我正在使用來自maatwebsite的插件。這裏是我試過laravel 5 html到pdf查看問題

控制器

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> 

結果

enter image description here

但是當我刪除img標籤,自身的大小看起來正常的代碼

enter image description here

我在想什麼?

回答