我有 svg 从 gsp 传递到我的 grails 控制器。我将其渲染为 pdf 并保存文件。但是没有附加样式。这是有道理的,因为样式是使用外部样式表完成的。
我的问题是是否可以使用 grails 中使用蜡染的样式表向 svg 添加样式?
这是我的源代码:
String svg_URI_input = params.image
TranscoderInput input_svg_image = new TranscoderInput(svg_URI_input);
OutputStream pdf_ostream = new FileOutputStream("report.pdf");
TranscoderOutput output_pdf_file = new TranscoderOutput(pdf_ostream);
Transcoder transcoder = new PDFTranscoder();
transcoder.transcode(input_svg_image, output_pdf_file);
pdf_ostream.flush();
pdf_ostream.close();
File fd = new File("report.pdf")
我是新蜡染,找不到任何我可以理解的教程示例。