Hi
I have simple page
<kendo-pdf-export #svgPrint>
<svg width="600" height="450" style="background-color: white">>
<defs>
<pattern id="colorBack" x="0" y="0" width="600" height="400" viewBox="0 0 600 400"
preserveAspectRatio="xMidYMax slice" patternUnits="userSpaceOnUse">
<image xlink:href="assets/anthrazit.png"></image>
</pattern>
</defs>
<rect class="profile" x="0" y="0" width="600" height="400" fill="url(#colorBack)" stroke="#555E5E"></rect>
<text fill="gray" class="dimensions-text" x="0" y="420" text-anchor="start"> 5890 </text>
</svg>
</kendo-pdf-export>
I see in a browser this:
But in exported PNG file, there is no background and there is default font instead of specified in css:
i created also a div with paragraph and it works fine.
<kendo-pdf-export #divPrint style="background-color: white; width: 600px; height: 450px;">
<div style="width: 600px; height: 400px; background-image: url('assets/anthrazit.png');">
</div>
<p class="dimensions-text"> 5890 </p>
</kendo-pdf-export>
I attached example app with issue reproduction.
--
Best regards
Kamil Paszkiewicz