Export an SVG with images and text data -


i'm trying export svg mysql data (images, text) i'm having trouble here.

the basic : i'm doing circle, divided in 7 parts, want put logo + text inside each part.

result needed :

result1

i figured out svg crowbar ultimate way export them.. though, i'm using server-stored images, when export done, no images rendered : result exported

this how display data in each part :

		<image x="270" y="50" xlink:href=/management-rings/web/assets/logos_bc/logo_ange.png height="75" width="75"/>  		<foreignobject x="160" y="140" width="140" height="75">  			<div style="height: 75px; width: 140px; position: absolute; z-index: 8; text-align: center;">  				<p xmlns="http://www.w3.org/1999/xhtml" id="text">  					ange<br>  				</p>  			</div>		  		</foreignobject>

i'm pretty clueless right now. how render these images when exporting svg?

thank much!


Comments