如何将.cdr文件转换为.jpg图像或.svg

时间:2016-03-01 10:01:55

标签: php

如何将.cdr文件转换为图像(.jpg,.png)或.svg

我已经使用imageMagick将.svg文件转换为.jpg,.png,但是imageMagick没有转换为.cdr。

如何在php中使用UniConvertor将.cdr文件转换为.svg格式。

1 个答案:

答案 0 :(得分:0)

  

如何在php中使用UniConvertor将.cdr文件转换为.svg格式。

UniConvertor是一个命令行程序。使用PHP,您可以使用system()exec()来调用它,如下所示:

system('uniconvertor drawing.cdr drawing.svg');

一般的CLI命令语法是:

$ uniconvertor [input file] [output file]

Ubuntu uniconvertor docs

中介绍了此语法

要安装UniConvertor,您可以从project download page获取多个操作系统的文件,从Ubuntu.com获取Unbuntu的文件。

此处提供了有关Ubuntu的其他安装说明:How to get Uniconvertor 1.1.5