On Tuesday 30 October 2001 16:53, cguillaume wrote: > Batik 1.1, I'm downloading the version developper 1.3 > My problem is that I can't find a way to position by inch X,Y coordinates > for lines, polygones, polylines,... > It seems to be only possible using pixels, isn't it?
The problem in your following document is that the line seems out of the svg element bounds. If you change the width and height attributes on your outermost svg element, that should work. > > > <?xml version="1.0" encoding="UTF-8"?> > > > <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN" > > > "http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd"> > > > <svg width="11.7in" height="2.54in" svgNum="0"> > > > <line x1="2" y1="24" x2="25" y2="8" stroke="red" /> > > > </svg> > > > > > > that should be > > > <line x1="2in" y1="24in" x2="25in" y2="8in" stroke="red" /> > > > but this doesn't work... Thierry. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]