答案 0 :(得分:0)
语言的名称[是]递归缩写PHP:Hypertext Preprocessor
您正尝试使用超文本预处理器生成图像
这不是最简单的方法。
您可以使用PHP或JavaScript并生成SVG。
示例:
function addText() {
var txt = document.createElementNS("http://www.w3.org/2000/svg", "text");
txt.setAttribute("x",150);
txt.setAttribute("y",100);
txt.setAttribute("font-family","Verdana");
txt.setAttribute("font-size","55");
txt.innerHTML = "My Name";
document.getElementById("mySVG").appendChild(txt);
}

<button onclick="addText()">Add some text</button>
<br>
<svg id="mySVG" height="200" width="500">
<rect fill="#73BAF0" height="200" width="500"></rect>
<text x="175" y="50" font-family="Verdana" font-size="25" color="black">SVG DEMO</text>
</svg>
&#13;