要使用PHP操作SVG文件,你可以使用php-svg
庫。首先,確保你已經安裝了PHP和Composer。然后按照以下步驟操作:
composer require simplon/php-svg
require_once 'vendor/autoload.php';
use SimpleXMLElement;
// 創建一個新的SVG文檔
$svg = new SimpleXMLElement('<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" version="1.1" />');
// 添加一個矩形
$rect = $svg->addChild('rect', ['x' => 10, 'y' => 10, 'width' => 100, 'height' => 100, 'fill' => 'blue']);
// 添加一個圓形
$circle = $svg->addChild('circle', ['cx' => 200, 'cy' => 200, 'r' => 50, 'fill' => 'red']);
// 保存SVG到文件
file_put_contents('output.svg', $svg->asXML());
// 讀取SVG文件
$svg = simplexml_load_file('output.svg');
// 獲取矩形的屬性
$rect = $svg->rect;
echo 'Rectangle x: ' . $rect['x'] . ', y: ' . $rect['y'] . ', width: ' . $rect['width'] . ', height: ' . $rect['height'] . ', fill: ' . $rect['fill'] . PHP_EOL;
// 修改矩形的顏色
$rect['fill'] = 'green';
// 保存修改后的SVG文件
file_put_contents('output_modified.svg', $svg->asXML());
現在你已經學會了如何使用PHP操作SVG文件。你可以根據需要添加更多的SVG元素和屬性。更多關于SimpleXMLElement類的信息,可以參考PHP官方文檔:https://www.php.net/manual/en/class.simplexmlelement.php