Hi Frédéric,
Frédéric Lanic wrote:
I have not a correct view in a jpeg file from a svg file.
Actually I think you do have the correct view in the jpeg file. The Adobe SVG viewer does not properly handle markers according to the SVG specification. In particular your markers do not specify any of markerWidth/Height, viewbox or overflow this means that your markers will be clipped to the box (0,0) to (3,3).
<g id="lend1"> <!-- NOTE: this is draw so only 1/2 of it is in the range: (0,0) to (1,1) --> <path d="M 1 -1 L 0 0 L 1 1 " style="stroke-linecap:round;stroke-linejoin:round;fill:none"/> </g> <marker id="mrkr1-7" class="st2" v:arrowType="1" v:arrowSize="2" orient="auto" markerUnits="strokeWidth"> <use xlink:href="#lend1" transform="scale(3.1) "/> </marker>
The simplest fix is to turn off overflow clipping by adding:
marker { overflow:visible; } to your stylesheet.
The correct thing to do is to specify an appropriate markerWidth/Height and viewbox so that the marker does not overflow it's viewport.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]