中抜き文字

ファイル名 : str-stroke.pxdx

文字のfill属性(面の色) 、stroke属性(線の色)

<?xml version="1.0" encoding="utf-8"?>
<!-- 用紙サイズ「A4」用紙方向「縦」 -->
<pxd paper-type="a4" orientation="portrait" title="文字">
<page>
   <!-- 値10の時1mmになるように設定 -->
   <svg x="0" y="0" width="21cm" height="29.7cm" viewBox="0 0 2100 2970">
      
      <!-- 中抜きの文字を描写 -->
      <text x="200" y="500" font-size="200" fill="white" stroke="black" stroke-width="10">文字の例</text>
      
      <!-- 文字の中の色と外周の色を変える -->
      <text x="200" y="800" font-size="200" fill="red" stroke="green" stroke-width="1">文字の例</text>

      <!-- 太文字の例 -->
      <text x="200" y="1100" font-size="200" fill="black" stroke="black" stroke-width="10">太文字の例</text>
   </svg>
</page>
</pxd>