Line.php
777 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
namespace Grafika\Imagick\DrawingObject;
use Grafika\DrawingObject\Line as Base;
use Grafika\DrawingObjectInterface;
use Grafika\Imagick\Image;
/**
 * Class Line
 * @package Grafika
 */
class Line extends Base implements DrawingObjectInterface
{
    /**
     * @param Image $image
     *
     * @return Image
     */
    public function draw($image)
    {
        $strokeColor = new \ImagickPixel($this->getColor()->getHexString());
        $draw = new \ImagickDraw();
        $draw->setStrokeColor($strokeColor);
        $draw->setStrokeWidth($this->thickness);
        list($x1, $y1) = $this->point1;
        list($x2, $y2) = $this->point2;
        $draw->line($x1, $y1, $x2, $y2);
        $image->getCore()->drawImage($draw);
        return $image;
    }
}