占位图生成

生成指定尺寸/颜色/文字的占位图

预览

Placeholder

SVG 代码

<svg width="300" height="200" xmlns="http://www.w3.org/2000/svg">
  <rect width="100%" height="100%" fill="#CCCCCC"/>
  <text x="50%" y="50%" font-family="Arial, sans-serif" font-size="24" fill="#333333" text-anchor="middle" dominant-baseline="middle">300 × 200</text>
</svg>