使用php生成带有音频/视频附件的PDF文件

时间:2018-07-22 23:24:31

标签: php tcpdf mpdf

是否可以使用php将音频/视频文件附加到PDF文件?我能找到的唯一选择是用Java编写的itext。

1 个答案:

答案 0 :(得分:0)

您假装在PDF中播放音频或视频?还是要插入外部链接?

对于外部链接,我使用https://github.com/mpdf/mpdf

安装: $作曲家需要mpdf / mpdf

示例:

$mpdf = new \Mpdf\Mpdf();
$mpdf->WriteHTML('<h1>Hello world!</h1>');

$mpdf->WriteHTML('<a href="http://hcmaslov.d-real.sci-nnov.ru/public/mp3/Queen/Queen%20\'Another%20One%20Bites%20The%20Dust\'.mp3">Play the song</a>');

$mpdf->Output();

Screenshot: PDF generated with mpdf library with external link

Screenshot: Playing the song after clic on the external link