<?php imageline( GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool
<?php public function applyToImage(Image $image, $x = 0, $y = 0) { $color = new Color($this->color); imageline($image->getCore(), $x, $y, $this->x, $this->y, $color->getInt()); return true; }