Nick Fitzsimons wrote:
Looking at it in the Firefox DOM Inspector shows it as having width and height of 2.82222E+06, which is almost 3 million pixels square. This is specified at the start of your SVG in the width and height attributes:

<svg xmlns="http://www.w3.org/2000/svg"; xml:space="preserve" width="2.82222E+006px" height="2.82222E+006px" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 2.82222e+006 2.11667e+006"
 xmlns:xlink="http://www.w3.org/1999/xlink";>

Disclaimer: I'm no expert on SVG :-)

Open the SVG file up in your usual text editor (it's just XML) and change the "width", "height" and "viewBox" attributes of the <svg> element to "1024", "768" and "0 0 768 1024" respectively, like this:

<svg xmlns="http://www.w3.org/2000/svg"; xml:space="preserve"
width="1024" height="768"
style="shape-rendering:geometricPrecision;
text-rendering:geometricPrecision; image-rendering:optimizeQuality;
fill-rule:evenodd; clip-rule:evenodd"
viewBox="0 0 768 1024"
xmlns:xlink="http://www.w3.org/1999/xlink";>

and see how that does.

As to why it was so weirdly enlarged, I really don't know. It could be something to do with pixel density or some related setting in Corel Draw; not having used that software since about 1994, I'm unable to help with that one :-)

Cheers,

Nick.
i made the changes and now no image.  this is too weird ... georg?
dwain


******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************

Reply via email to