SVG rect要素

左上の座標と幅、高さを指定することで四角形を描きます。
頂点の半径を与えることで角を丸くできます。

四角形を描いたサンプルプログラム

<?xml version="1.0" encoding="utf-8"?>
<pxd paper-type="A4" orientation="portrait">
<page>
<svg viewBox="0 0 2100 2970">
<g stroke="black" stroke-width="1">
 <rect x="100" y="100" width="1000" height="600" fill="none"/>
 <rect x="200" y="200" width="800" height="300" fill="lightblue"/>
 <rect x="300" y="300" width="500" height="300"
  rx="50" ry="50" fill="none"/>
 <rect x="400" y="400" width="500" height="250"
  rx="50" ry="50" fill="pink"/>
</g>
</svg>
</page>
</pxd>

rect要素の主な属性

属性名
x左上のX座標
y左上のY座標
rx終点のX座標
ry終点のy座標
上部へスクロール