是否可以使用stop
存储pdf的内容,然后将此内容嵌入到模式(HTML页面)中以向用户显示该文件?
我想创建PDF和图像文件的预览,而不会让用户直接下载这些文件。因此,文件目录使用stop
限制访问。
答案 0 :(得分:0)
您可以使用ImageMagick扩展:
<?php
header('Content-Type: image/jpg');
$filePath = '/path/to/pdf/file.pdf';
$image = new Imagick("{$filePath}[0]"); // [0] means "first page"
$image->setImageFormat('jpg');
// if you want, you can also crop and/or resize the image
// see the docs at php.net/manual/en/class.imagick.php for more
echo $image;
exit;