I am using FOP library to generate pdf from a xml file, able to generate all the data(except image) with dynamic info passed through another xml. Its not allowing me to pass image value as below
<fo:inline>
<fo:external-graphic content-width="109.5pt"
content-height="50.25pt"
src="<xsl:value-of select="paymentno" />"
</fo:external-graphic >
</fo:inline>
where xml data which is being passed dynamically is
`<tns:paymentno>
"url("data:image/auto;base64,iVBORw0KGgoAAAANSUhEUgAAAFUAAAAoCAIAAAAAKyESAAAAYUlEQVR42u3PQQoAIAgEwP7/6YIiEC3oGownjWVjWt/T5qwlvqQz5utyKzkGUvJYlX55aahnjOUAPz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/Pz8/P/+H/gGaQxUFTT6pUgAAAABJRU5ErkJggg==;")"</tns:paymentno>`
One more thing, if i am passing static value(of image) directly to xsl then i am able to get image in my pdf. Please do provide me with solution if you have any idea asap