1
0
mirror of https://github.com/Intervention/image.git synced 2025-09-02 18:32:56 +02:00

added text method

This commit is contained in:
Oliver Vogel
2013-02-01 17:04:58 +01:00
parent 2c23bcb430
commit 0981553edc
3 changed files with 20 additions and 4 deletions

View File

@@ -139,7 +139,7 @@ class ImageTest extends PHPUnit_Framework_Testcase
public function testTextImage()
{
$img = $this->getTestImage();
$img = $img->text('Fox', 10, 10, 0, 16, '000000', null);
$img = $img->text('Fox', 10, 10, 16, '000000', 0, null);
$this->assertInstanceOf('Intervention\Image\Image', $img);
}