Hi Alex. Alex Chew: > Yes,I can get same result to yours.But texts disappeared in my SVG. > I am sure the text is some where on my svg document because FIND > command doesnt alert me NOT FOUND immediately.It find the text but I > cannot locate where it is. > I am not sure whether it caused by ViewBox attribute. I also changed > stroke-width and font-size attribute to make it appear, but I > failed.Would you please do me a favor for making following svg > document correctly show on screen?
It’s because of the coordinate system inside riverMap. You’ve got 148160 units of height there, but your font size is only 100 units, so that’s effectively smaller than one screen pixel. If you change those font-size properties to 1000px, then you can see the text. -- Cameron McCormack, http://mcc.id.au/ xmpp:[EMAIL PROTECTED] ▪ ICQ 26955922 ▪ MSN [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
