I'm creating an image that has an image that uses a variable to complete the src of the image, as shown below:
<
kendo-pdf-export
#pdfProfile
paperSize
=
"A4"
margin
=
"0.2cm"
[scale]="0.5" [imageResolution]="72">
<
img
src
=
"{{URL_Image + bull.image}}"
class
=
"img-fluid rounded"
alt
=
""
/>
When I use this form, the image appears on the page, but in the creation of the PDF it is not shown.
When I switch to a still image, as shown below, it works.
<
img
src
=
"https://c2.staticflickr.com/2/1574/25734996011_637430f5d8_c.jpg"
class
=
"img-fluid rounded"
alt
=
""
/>
Do you have any configuration, or how to resolve this?