ManaPHP\Image::text PHP Метод

text() публичный Метод

public text ( string $text, integer $offsetX, integer $offsetY, float $opacity = 1, integer $color, integer $size = 12, string $font_file = null ) : static
$text string
$offsetX integer
$offsetY integer
$opacity float
$color integer
$size integer
$font_file string
Результат static
    public function text($text, $offsetX = 0, $offsetY = 0, $opacity = 1.0, $color = 0x0, $size = 12, $font_file = null)
    {
        $this->adapter->text($text, $offsetX, $offsetY, $opacity, $color, $size, $font_file);
        return $this;
    }