我有一个表单,用户可以在其中填写输入框。在某些情况下,他们也可以选择图像。
问题是,我不想将图像文件保存在我们服务器上的某个位置,并为 PDF 提供如下 URL:
//Put uploaded file on public/uploads/ folder
<img src="{{ $imagePath }}" style="height: 50px; width: 50px;">
相反,我想将上传的图像直接注入 PDF 文件。像这样的东西:
PDF::load($data, 'A4', 'portrait')->inject('image', Input::file('resim'))->output();
//So I can reference it as {{ $image }} on PDF template, but image will be injected into PDF file
我是 PDF 文件的初学者,我什至不确定这是否可行。
如果可能的话,谁能给我一些建议?
附言。我为 Laravel 4 使用 DOMPDF 包。https://github.com/thujohn/pdf-l4