@@ -14,36 +14,36 @@ use Tester\Assert;
1414require __DIR__ . '/../bootstrap.php ' ;
1515
1616
17- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
18- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha2.png ' ), 0 , 0 , 100 );
17+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
18+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha2.png ' ), 0 , 0 , 100 );
1919Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.100.png ' ), $ image ->toString (Image::PNG , 0 ));
2020
2121
22- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
23- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha2.png ' ), 0 , 0 , 99 );
22+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
23+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha2.png ' ), 0 , 0 , 99 );
2424Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.99.png ' ), $ image ->toString (Image::PNG , 0 ));
2525
2626
27- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
28- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha2.png ' ), 0 , 0 , 50 );
27+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
28+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha2.png ' ), 0 , 0 , 50 );
2929Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.50.png ' ), $ image ->toString (Image::PNG , 0 ));
3030
3131
32- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
33- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha2.png ' ), 0 , 0 , 1 );
32+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
33+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha2.png ' ), 0 , 0 , 1 );
3434Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.1.png ' ), $ image ->toString (Image::PNG , 0 ));
3535
3636
37- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
38- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha2.png ' ), 0 , 0 , 0 );
37+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
38+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha2.png ' ), 0 , 0 , 0 );
3939Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.0.png ' ), $ image ->toString (Image::PNG , 0 ));
4040
4141
42- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
43- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha3.gif ' ), 0 , 0 , 100 );
42+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
43+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha3.gif ' ), 0 , 0 , 100 );
4444Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.100b.png ' ), $ image ->toString (Image::PNG , 0 ));
4545
4646
47- $ image = Image::fromFile (__DIR__ . '/images/alpha1.png ' );
48- $ image ->place (Image::fromFile (__DIR__ . '/images/alpha3.gif ' ), 0 , 0 , 50 );
47+ $ image = Image::fromFile (__DIR__ . '/fixtures. images/alpha1.png ' );
48+ $ image ->place (Image::fromFile (__DIR__ . '/fixtures. images/alpha3.gif ' ), 0 , 0 , 50 );
4949Assert::same (file_get_contents (__DIR__ . '/expected/Image.alpha2.50b.png ' ), $ image ->toString (Image::PNG , 0 ));
0 commit comments