我正在我的教育网站上工作。我使用简单的PHP代码上传我的pdf文件,如书籍,工作表...我希望pdf thumnail自动显示在我的read.php页面的链接上。我能这样做吗?请以简单的php方式帮助解释。感谢。
答案 0 :(得分:0)
您需要使用这两个库:
https://sourceforge.net/projects/ghostscript/
安装GhostScript之后:
#include <stdio.h>
#include <ctype.h>
int main ()
{
char c,u;
printf("Enter sentence, press [enter] key to end");
while(c=getchar()!='\n')
{
u=toupper(c);
putchar (u);
}
return 0;
}
安装GhostScript:参考:https://gist.github.com/leomelzer/3949356
$thumbnails = new imagick('pdf_file.pdf[0]'); // the name of ur pdf file [0] represents page 1
$thumbnails ->setImageFormat('jpg'); // the output format of thumbnails
header('Content-Type: image/jpeg');
echo $thumbnails; // this will finally output ur thumbanil
sudo apt-get install ghostscript
sudo apt-get install libgs-dev
sudo apt-get install gs-esp
sudo apt-get --purge remove imagemagick
cd ImageMagick-xx
[还有你还需要什么] ./configure --with-gslib=yes
make
make install