我将Highcharts图表导出为PDF文件everything's fine
。
但是当我在Adobe Illustrator(to change some text
)中打开此图表时:
vectorized
delete all my text
和rewrite another one
lose all my style properties
。是否可以使用SVG
将PDF
(通过蜡染,HighCharts的导出服务器)导出到not-vectorized text
?
在没有Batik的情况下,是否存在另一种方法?
答案 0 :(得分:0)
我有一个解决方案,可以将svg导出为pdf文本,然后在Illustrator / inkscape中进行编辑。
这要归功于命令行中使用的Inkscape。
PATH
变量中)highcharts/exporting-server/index.php
$output = shell_exec("java -jar ". BATIK_PATH ." $typeString -d $outfile $width temp/$tempName.svg");
$output = shell_exec("inkscape -f temp/$tempName.svg -A $outfile");