将图像导出到Excel

使用Laravel Excel,我尝试将图像导出到Excel。 图像是在Excel中,但我不能设置其位置。 图像显示在单元格的中心,我需要在左边。 我尝试了保证金和宽度,但这是行不通的。 这是我的刀片:

<html> <?php $path = public_path(); ?> <table> <tr> <td align="center" valign="middle" height="50"> <strong> {{$title}} </strong> </td> </tr> <tr> <td> <img src="{{$path}}/pieCharts/abc.png" /> </td> </tr> </table> </html> 

这是我的代码:

  App:: make('excel'); Excel::create($title, function($excel) use ($month_name, $year, $hd) { $title = $hd.' '.$month_name.' '.$year; $excel->sheet('Pie Chart', function($sheet) use ($title) { $sheet->loadView('utilityPieChart')->with('title', $title); }); })->download('xls'); 

我们可以将位置应用于图像吗?