As a test, I create a rectangle object. I make its width and height 200. I set its x,y origin to 0,0. When I export the object as a plain SVG file, I get curious values for the object in the output SVG file:
Code: Select all
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.0"
width="200"
height="200"
id="svg2459">
<defs
id="defs2461" />
<g
transform="translate(0,-852.3622)"
id="layer1">
<rect
width="190.0341"
height="190.0341"
x="4.9829493"
y="857.34515"
id="rect2469"
style="opacity:1;fill:#ff2a2a;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:9.96589851;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
</svg>
Why is the rect definition not 200x200, instead it is ~190 x ~190? Also, why does the layer have such a strange y-transform? Why do the x and y values not sit directly at 0,0? I may be using the application wrong, but inside Inkscape my square says it's at 0,0 of size 200,200.
Thanks for any info,
Mark