使用 unoconv 将 PPT 转换成 PDF
#unoconv -f pdf test.txt
这个命令运行后直接会弹出错误信息
/usr/lib/libreoffice/program/soffice.bin X11 error: Can't open display:
Set DISPLAY environment variable, use -display option
or check permissions of your X-Server
(See "man X" resp. "man xhost" for details)
Error: Unable to connect or start own listener. Aborting.
yum install xorg-x11-server-Xvfb
Xvfb +extension RAND
Xvfb :1 -screen 0 800x600x24 -extension RANDR&
export DISPLAY=localhost:1
#unoconv --listener &
soffice --accept="socket,host=127.0.0.1,port=8100;urp;" -display :1
1.使用163yum源
2.安装unoconv yum install http://pkgs.repoforge.org/unoconv/unoconv-0.5-1.el6.rf.noarch.rpm
3.安装libreoffice yum install libreoffice
4.安装Xvfb yum install xorg-x11-server-Xvfb
5.设置服务器字体 1、复制xp 字體 首先,在D:盤創建一個文件夾win 進入C:\WINDOWS\Fonts把此文件夾下的所以字體复制 到D:\win 由於win文件夾比較大,進行打包 win.zip 2、上傳服務器 把win.zip 上到局域網服務器放到/home/Gzh/tmp目錄下
cd /home/Gzh/tmp
//解壓
unzip win.zip
mv win /usr/share/fonts
cd win
chmod -Rf 755 Fonts
//加載字體
mkfontscale
mkfontdir
fc-cache –fv
3、重启服務器 reboot 服務器
6.开启xvfb
Xvfb :1 -screen 0 800x600x24&
export DISPLAY=localhost:1
7.开启soffice服务
soffice --headless --accept="socket,host=127.0.0.1,port=8100;urp;" --nofirststartwizard &
8.使用unoconv
unoconv -f html *.doc
Xvfb :1 -screen 0 800x600x24 +extension RANDR &
export DISPLAY=localhost:1
unoconv --listener &
$im = new Imagick();
$im->setResolution(288, 288);
$im->readImage($pdf);
$images = array();
foreach($im as $key => $value) {
$filename = 'test'.$key.'.jpg';
$value->setImageFormat('jpg');
$value->setImageCompression(imagick::COMPRESSION_JPEG);
$value->scaleImage(1440, 2560, true);
if($value->writeImage($filename) == true) {
$images[] = $filename;
}
}
return $images;
最后要安装ghostscript.exe,要不然会报错的。下载地址:http://downloads.ghostscript.com/public/gs904w32.exe
yum -y install php-devel
yum install gcc gcc-c++ autoconf automake
pecl install imagick
我要评论
文章归档
2024 年 12 月
1
2024 年 11 月
1
2024 年 10 月
2
2024 年 09 月
2
2024 年 07 月
1
2024 年 06 月
1
2024 年 04 月
1
2024 年 03 月
1
2024 年 01 月
2
2023 年 11 月
2
文章日历
2024 年 12 月 | ||||||
---|---|---|---|---|---|---|
日 | 一 | 二 | 三 | 四 | 五 | 六 |
01 | 02 | 03 | 04 | 05 | 06 | 07 |
08 | 09 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
30 | 31 | 01 | 02 | 03 | 04 | 05 |
文章标签
- Linux
- Go
- Yii
- 新浪
- CentOS
- PHP
- Git
- WSL
- Composer
- Mac
- 入职
- Bootstrap
- pyenv
- UCenter
- 厦门
- 出差
- 长沙
- 湖南卫视
- 微博
- Tengine
- YUI
- 泰国
- pecl
- 优化
- GitLab
- 迁移
- rootless
- 年会
- 生日
- Tengin
- RedHat
- Sphinx
- cygwin
- Windows
- Tmux
- Zsh
- 升级
- MySQL
- sql_mode
- Shadowsockets
- 面向对象
- HTTP
- 状态码
- grep
- unoconv
- PPT
- Nginx
- htpasswd
- golang
共 0 条评论