将SVG转换为PDF时,难以保留样式。 我正在使用cloudFormatter.com中的cssToPdf。
但是我需要使用样式mix-blend-mode:但创建pdf时不会保留它。
我尝试在svg元素上使用内联样式,也将样式放入HTML头中并使用外部style.css文件。但是在每种情况下,我都无法获得“多重效果”。
如何获取pdf版本以识别SVG元素的样式?
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>csstopdf</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- <style>
circle {
mix-blend-mode: multiply;
}
</style> -->
</head>
<body>
<div>
<svg id="svgCircles" version="1.1" xmlns="http://www.w3.org/2000/svg" width="300" height="300" x="0" y="0" viewBox="0 0 150 150">
<!-- <circle cx="50" cy="50" r="40" stroke-width="4" fill="green" style="mix-blend-mode: multiply;"/>
<circle cx="75" cy="75" r="40" stroke-width="4" fill="red" style="mix-blend-mode: multiply;"/>
<circle cx="100" cy="50" r="40" stroke-width="4" fill="blue" style="mix-blend-mode: multiply;"/> -->
<circle cx="50" cy="50" r="40" stroke-width="4" fill="green" />
<circle cx="75" cy="75" r="40" stroke-width="4" fill="red" />
<circle cx="100" cy="50" r="40" stroke-width="4" fill="blue" />
</svg>
</div>
<div class="btn-group" onclick="xepOnline.Formatter.Format('svgCircles');" role="group" aria-label="...">
<button type="button" class="btn btn-warning">Generate svgCircles!</button>
</div>
<script src="xepOnline.jqPlugin.js"></script>
</body>
</html>
xepOnline.jqPlugin.js文件太大,无法在此处包含。但可以在http://www.cloudformatter.com/Resources/Pages/CSS2Pdf/Script/xepOnline.jqPlugin.js上找到,也可以从cloudformatter.com下载
style.css文件,
circle {
mix-blend-mode: multiply;
}
上有一个有效的示例
回购位于https://github.com/shanegibney/csstopdf
任何帮助,将不胜感激,
谢谢
答案 0 :(得分:2)
由于我是此应用程序的作者之一,因此我将其添加为答案。
@cloudformatter css2pdf应用程序基于RenderX的XEP引擎。他们对SVG转换的支持在此处详述:
如果您想要的不在该列表中,则目前不支持。
本质上,@ cloudformatter会将HTML + CSS与随附的SVG(如果有)一起发送到远程服务器。该服务器进行一些清理,然后将内容转换为XSL FO,以用于格式化引擎。使用的格式化引擎是RenderX XEP。因此,它正在进行从内容到输出的所有格式化(PDF,Postscript,AFP,XPS等)。基础引擎支持的是受支持的。
在您的情况下,似乎不支持mix-blend-mode。