将 SVG 转换为 PDF 时难以保留样式。我正在使用来自 cloudFormatter.com 的cssToPdf。
但我需要使用风格 mix-blend-mode: multiply; 但是当我创建 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;
}
在gh-pages上有一个工作示例
回购位于https://github.com/shanegibney/cstopdf
对此的任何帮助将不胜感激,
谢谢,