1

我正在尝试将 SVG 文件输出为 PDF。我尝试了几种方法,但我一直遇到问题。

我将此来源用作参考: Convert SVG to PDF 并尝试了以下方法:

// Save this SVG into a file (required by SVG -> PDF transformation process)
File svgFile = File.createTempFile("graphic-", ".svg");
Transformer transformer = TransformerFactory.newInstance().newTransformer();
DOMSource source2 = new DOMSource(svgXmlDoc);
FileOutputStream fOut = new FileOutputStream(svgFile);
try { transformer.transform(source2, new StreamResult(fOut)); }
finally { fOut.close(); }

// Convert the SVG into PDF
File outputFile = File.createTempFile("result-", ".pdf");
SVGConverter converter = new SVGConverter();
converter.setDestinationType(DestinationType.PDF);
converter.setSources(new String[] { svgFile.toString() });
converter.setDst(outputFile);
converter.execute();

我遇到了几个 ClassNotFoundExceptions,主要与 batik.DOM 相关,这真的很奇怪,因为我可以看到它在外部库中列出。

接下来,我尝试使用 iTextG。我遵循了 SvgToPdf 中的代码:https ://developers.itextpdf.com/examples/itext-action-second-edition/chapter-15

但是后来我卡住了,因为 iTextG 没有 PdfGraphics2D,而该方法需要它。

关于我该怎么做的任何想法?

4

1 回答 1

1

这是我最终使用的解决方案,它确实依赖于任何库。

WebKit 引擎可以渲染 SVG,因此您可以将 SVG 加载到 WebView 中:

webView.loadUrl(Uri.fromFile(svgFile).toString());

WebView 还具有打印功能,因此您可以继续:

// Get a PrintManager instance
PrintManager printManager = (PrintManager) getActivity()
        .getSystemService(Context.PRINT_SERVICE);

// Get a print adapter instance
PrintDocumentAdapter printAdapter = webView.createPrintDocumentAdapter();

// Create a print job with name and adapter instance
String jobName = getString(R.string.app_name) + " Document";
PrintJob printJob = printManager.print(jobName, printAdapter,
        new PrintAttributes.Builder().build());
于 2017-10-19T17:54:41.993 回答