gpt4 book ai didi

javascript - 如何在 PHP 中使用 SVG 绘制正方形?

转载 作者:行者123 更新时间:2023-12-04 07:55:03 34 4
gpt4 key购买 nike

我想在 PHP 中使用 SVG 创建一个正方形,给出两个参数:
边:(x, y) = 例如:100;
Angular :(rx, ry) = 例如:20
输入:
enter image description here
输出:
enter image description here
我的代码有效,但我正在寻找一个简化版本......
代码:

  if ($sideOK && $cornerOK){
print " <svg version=\"1.1\" xmlns=\"http:/www.w3.org/2000/svg\"\n"
. " width=\"" .($side+10) ."px\" height=\"" . ($side + 10) . "px\">\n";
print " <rect fill=\"white\" stroke=\"black\" stroke-width=\"10\" "
. "x=\"5\" y=\"5\" width=\"$side\" height=\"$side\" rx=\"$corner\" ry=\"$corner\" />\n";
print " </svg>\n";
print "\n";
}
完整代码:
输入:form.php> https://pastebin.com/H3PpJgb6
输出:result.php> https://pastebin.com/PGpGJBRN
有任何想法吗?

最佳答案

不确定它是否比您拥有的“更简单”,但请查看 imagickdraw here 的矩形函数和 here .

关于javascript - 如何在 PHP 中使用 SVG 绘制正方形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66740202/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com