gpt4 book ai didi

php - 使用 PHP 计算关于曲线的 SVG 边界框

转载 作者:可可西里 更新时间:2023-11-01 01:03:44 25 4
gpt4 key购买 nike

我最近发现这个很棒的类位于 here ,并尝试使用它。

但是,它仅适用于一些基本功能,例如移动、水平线和垂直线。

--

我尝试通过添加额外的检查(并更改正则表达式)来扩展这个现有的类。

public static function fromPath($pathString) {
preg_match_all('/([mlvhzc][^mlvhzc]*)/i', $pathString, $commands);
$pt = array(0, 0);
$bounds = new self();
foreach ($commands[0] as $command) {
preg_match_all('/((\+|-)?\d+(\.\d+)?(e(\+|-)?\d+)?)/i', $command, $matches);
$i = 0;
while ($i < count($matches[1])) {
switch ($command[0]) {
case 'm' :
case 'l' :
$pt[0] += $matches[1][$i++];
$pt[1] += $matches[1][$i++];
break;
case 'M' :
case 'L' :
$pt[0] = $matches[1][$i++];
$pt[1] = $matches[1][$i++];
$last=$pt;
break;
case 'v' :
$pt[1] += $matches[1][$i++];
break;
case 'V' :
$pt[1] = $matches[1][$i++];
$last[1]=$pt[1];
break;
case 'h' :
$pt[0] += $matches[1][$i++];
break;
case 'H' :
$pt[0] = $matches[1][$i++];
$last[0]=$pt[0];
break;
case 'z' :
case 'Z' :
break;
case 'c':
$pt[0] = $last[0]+$matches[1][4];
$pt[1] = $last[1]+$matches[1][5];
$last=$pt;
$i=count($matches[1]);
break;
default :
throw new RuntimeException("Unhandled path command: " . $command[0]);
}
$bounds->extend($pt[0], $pt[1]);
}

}
return $bounds;
}

我查看了 SVG 手册,发现“c”只有 6 个参数,知道最后 2 个是曲线结束的位置,我尝试基于那个扩展点...

目前,我的测试基于此:

<svg xmlns="http://www.w3.org/2000/svg" width="109" height="109" viewBox="0 0 109 109">
<g style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;">
<path d="M32.25,41c1.25,0.62,3.12,0.67,5.5,0.5c7.12-0.5,19.12-2.5,24-3c0.99-0.1,2.62-0.25,3.75,0" />
</g>

当在浏览器中运行时,Chrome 报告它的宽高比(因为我知道 svg 没有确切的尺寸),大约是 5 到 6,但是,当我用我的脚本找到这个比例时,它完全关闭了.

我想知道是否有另一个支持所有功能(C、c、Q、q 等)的 svg 类。

我知道有一种方法可以通过将其转换为图像来获取框,但我觉得效率很低,javascript中也有getBBox,但我想在服务器上执行计算。

感谢阅读!

最佳答案

这是一个使用 imagick 的例子,它实际上是两个例子合二为一,因为它们不能同时运行,一次取消注释一个:

$svg = '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" width="109" height="109" viewBox="0 0 109 109">
<g style="fill:none;stroke:#000000;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;">
<path d="M32.25,41c1.25,0.62,3.12,0.67,5.5,0.5c7.12-0.5,19.12-2.5,24-3c0.99-0.1,2.62-0.25,3.75,0" />
</g>
</svg>';

$im = new Imagick();
$im->readImageBlob($svg);
$im->trimImage (0);//This trims the unecessary blank space.

//This block gets the dimensions (comment this block before uncommenting the second example bellow)
$dimension = $im->getImageGeometry();
print_r('<pre>');
print_r($dimension);
die();


/*//Uncomment this block to view thw jpeg version of the svg
$im->setImageFormat("jpeg");
header("Content-Type: image/jpeg");
$thumbnail = $im->getImageBlob();
echo $thumbnail;
$im->clear();
$im->destroy();
//*/

关于php - 使用 PHP 计算关于曲线的 SVG 边界框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16344288/

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