我导出一个高级图表作为一个PDF文件,everything's fine。
但是,当我在Adobe (to change some text)中打开这个图表时:
vectorizeddelete all my text和rewrite another onelose all my style properties中设置了HighCharts。是否可以将SVG (通过HighCharts的导出服务器batik )导出到带有not-vectorized text的PDF?
在没有蜡染的情况下,是否有其他方法可以做到这一点?
发布于 2014-08-27 14:22:26
例如,我有一个将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");https://stackoverflow.com/questions/21580518
复制相似问题