Grafika\EditorInterface::text PHP Method

text() public method

Write text to image.
public text ( grafika\ImageInterface &$image, string $text, integer $size = 12, integer $x, integer $y = 12, Color $color = null, string $font = '', integer $angle ) : grafika\EditorInterface
$image grafika\ImageInterface Instance of Image.
$text string The text to be written.
$size integer The font size. Defaults to 12.
$x integer The distance from the left edge of the image to the left of the text. Defaults to 0.
$y integer The distance from the top edge of the image to the baseline of the text. Defaults to 12 (equal to font size) so that the text is placed within the image.
$color Color The Color object. Default text color is black.
$font string Full path to font file. If blank, will default to Liberation Sans font.
$angle integer Angle of text from 0 - 359. Defaults to 0.
return grafika\EditorInterface An instance of Editor.
    public function text(&$image, $text, $size = 12, $x = 0, $y = 12, $color = null, $font = '', $angle = 0);