0

有没有办法在 PHP 中为 mp4/m4v 文件添加水印?这些文件已经保存在服务器上,但是在显示时,我希望通过 PHP(标题输出)放置水印。

这是我当前的 PHP 代码:

$fp = fopen($path, 'rb');

// Change the header to whatever your file's mime type is
header("Content-Type: " . $ctype);
header("Content-Length: " . filesize($path));

fpassthru($fp);
exit;
4

0 回答 0