本篇文章将讨论可用于将 pdf 文档转换为一组 PHP 预览图像的方法。 预览为您的内容增加了一层安全性,因为图像上的内容无法复制和粘贴。 它们还提供其他我们不会详述的功能。 将 PDF 文档转
本篇文章将讨论可用于将 pdf 文档转换为一组 PHP 预览图像的方法。
预览为您的内容增加了一层安全性,因为图像上的内容无法复制和粘贴。 它们还提供其他我们不会详述的功能。
将 PDF 文档转换为预览图像的最简单方法是利用第三方库。 这些都是:
此命令行实用程序可在 windows、linux 和 Mac 上使用。 按照以下步骤将 PDF 文档转换为预览图像。
$gs --version
-dTextAlphaBits=4 -dGraphicsAlphaBits=4
-dFirstPage=1 -dLastPage=1 -r300
-sOutputFile=preview.jpg input.pdf
4. 上面的命令将在您的文档上创建起始页的图像。 我们将调用 `exec()` 函数来使用 PHP 中的命令,如下所示。
```php
<?php
exec( "ls -l", $output_str, $return_val );
foreach ( $output_str as $line ) {
echo $line . "\n";
}
?>
上面的代码会将所有目录和文件加载到控制台。 我们现在可以使用 PHP 代码来执行 Ghostscript 命令。
这是我们使用的 PHP 脚本。
<?php
function my_pdf ( $file ) {
$file_info = file_get_contents( $file );
if ( preg_match( "/^%PDF-[0-1]\.[0-9]+/", $file_info ) ) {
return true;
}
else {
return false;
}
}
function our_preview ( $file ) {
$our_fORMat = "png";
$prvw_page = "1";
$resolution = "300";
$our_file = "prvw.jpg";
$command = "gs -dSAFER -dBATCH -dNOPAUSE -sDEVICE=" . $our_format . " ";
$command .= "-dTextAlphaBits=" . " -dGraphicsAlphaBits=" . . " ";
$command .= "-dFirstPage=" . $prvw_page . " -dLastPage=" . $prvw_page . " ";
$command .= "-r" . $resolution . " ";
$command .= "-sOutputFile=" . $our_file . " '" . $file . "'";
echo "Running command...\n";
exec( $command, $com_output, $ret_val );
foreach( $com_output as $line ) {
echo $line . "\n";
}
if ( !$ret_val ) {
echo "Preview created !!\n";
}
else {
echo "Error while creating.\n";
}
}
function __main__() {
global $arg;
$inp_file = $arg[1];
if ( my_pdf( $inp_file ) ) {
// Preview for the pdf
create_preview( $inp_file );
}
else {
echo "The file " . $inp_file . " is not a valid PDF document.\n";
}
}
__main__();
?>
代码执行从 _main_()
函数开始,它在命令行上获取 PDF 文件并验证其有效性。 如果文件有效,PHP 将执行 Ghostscript 命令。
输出:
$ php pdf_preview.php input.pdf
Executing command...
GPL Ghostscript 9.22 (2022-08-05)
Copyright (C) 2022 Artifex Software, Inc. All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
Processing pages 1 through 1.
Page 1
Preview created !!
首先将所有 ImageMagick 二进制文件安装到您的系统中。 运行以下命令以安装 ImageMagick 依赖项。
$sudo dnf install GCc php-devel php-pear
运行以下命令以安装 ImageMagick。
$ sudo dnf install ImageMagick ImageMagick-devel
然后,让我们安装 PHP 包装器类。
$ sudo pecl install imagick
$ sudo bash -c "echo "extension=imagick.so" > /etc/php.d/imagick.ini"
对于在 LAMP 服务器上使用它的用户,您必须重新启动 Apache 网络服务器。
$ sudo service Httpd restart
至此,我们需要的一切都准备好了。 我们现在可以使用早期的 PHP 脚本并编辑 create_preview()
函数。
function create_preview ( $file ) {
$output_format = "jpeg";
$preview_page = "1";
$resolution = "300";
$output_file = "imagick_preview.jpg";
echo "Fetching preview...\n";
$img_data = new Imagick();
$img_data->setResolution( $resolution, $resolution );
$img_data->readImage( $file . "[" . ($preview_page - 1) . "]" );
$img_data->setImageFormat( $output_format );
file_put_contents( $output_file, $img_data, FILE_USE_INCLUDE_PATH );
}
输出结果:
$ php pdf_preview.php input.pdf
Fetching preview...
这就是我们如何在 PHP 上从 PDF 文档创建预览图像。 这两种方法具有相似的基本功能。 您的选择取决于您的喜好。
--结束END--
本文标题: 在 PHP 中将 PDF 文档转换为预览图像
本文链接: https://lsjlt.com/news/569127.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0