meyfa/php-svg

View on GitHub
src/Nodes/Shapes/SVGLine.php

Summary

Maintainability
D
2 days
Test Coverage
A
100%
<?php

namespace SVG\Nodes\Shapes;

use SVG\Nodes\SVGNodeContainer;
use SVG\Rasterization\SVGRasterizer;
use SVG\Rasterization\Transform\TransformParser;
use SVG\Utilities\Units\Length;

/**
 * Represents the SVG tag 'line'.
 * Has the special attributes x1, y1, x2, y2.
 */
class SVGLine extends SVGNodeContainer
{
    public const TAG_NAME = 'line';

    /**
     * @param mixed $x1 The first point's x coordinate.
     * @param mixed $y1 The first point's y coordinate.
     * @param mixed $x2 The second point's x coordinate.
     * @param mixed $y2 The second point's y coordinate.
     */
    public function __construct($x1 = null, $y1 = null, $x2 = null, $y2 = null)
    {
        parent::__construct();

        $this->setAttribute('x1', $x1);
        $this->setAttribute('y1', $y1);
        $this->setAttribute('x2', $x2);
        $this->setAttribute('y2', $y2);
    }

    /**
     * @return string|null The first point's x coordinate.
     */
    public function getX1(): ?string
    {
        return $this->getAttribute('x1');
    }

    /**
     * Sets the first point's x coordinate.
     *
     * @param mixed $x1 The new coordinate.
     *
     * @return $this This node instance, for call chaining.
     */
    public function setX1($x1): SVGLine
    {
        return $this->setAttribute('x1', $x1);
    }

    /**
     * @return string|null The first point's y coordinate.
     */
    public function getY1(): ?string
    {
        return $this->getAttribute('y1');
    }

    /**
     * Sets the first point's y coordinate.
     *
     * @param mixed $y1 The new coordinate.
     *
     * @return $this This node instance, for call chaining.
     */
    public function setY1($y1): SVGLine
    {
        return $this->setAttribute('y1', $y1);
    }

    /**
     * @return string|null The second point's x coordinate.
     */
    public function getX2(): ?string
    {
        return $this->getAttribute('x2');
    }

    /**
     * Sets the second point's x coordinate.
     *
     * @param mixed $x2 The new coordinate.
     *
     * @return $this This node instance, for call chaining.
     */
    public function setX2($x2): SVGLine
    {
        return $this->setAttribute('x2', $x2);
    }

    /**
     * @return string|null The second point's y coordinate.
     */
    public function getY2(): ?string
    {
        return $this->getAttribute('y2');
    }

    /**
     * Sets the second point's y coordinate.
     *
     * @param mixed $y2 The new coordinate.
     *
     * @return $this This node instance, for call chaining.
     */
    public function setY2($y2): SVGLine
    {
        return $this->setAttribute('y2', $y2);
    }

    /**
     * @inheritdoc
     */
    public function rasterize(SVGRasterizer $rasterizer): void
    {
        if ($this->getComputedStyle('display') === 'none') {
            return;
        }

        $visibility = $this->getComputedStyle('visibility');
        if ($visibility === 'hidden' || $visibility === 'collapse') {
            return;
        }

        TransformParser::parseTransformString($this->getAttribute('transform'), $rasterizer->pushTransform());

        $rasterizer->render('line', [
            'x1'    => Length::convert($this->getX1(), $rasterizer->getDocumentWidth()),
            'y1'    => Length::convert($this->getY1(), $rasterizer->getDocumentHeight()),
            'x2'    => Length::convert($this->getX2(), $rasterizer->getDocumentWidth()),
            'y2'    => Length::convert($this->getY2(), $rasterizer->getDocumentHeight()),
        ], $this);

        $rasterizer->popTransform();
    }
}