diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-09-08 16:27:06 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-09-08 16:27:06 +0000 |
| commit | f2616c784f4ecc07d8c846fe61bd1b798eb396b4 (patch) | |
| tree | 2b6911ef98d8ad18c8f1677a3a7cf57d943911e0 /tools/tst.php | |
| parent | 37d218f5940fd4fbf3a257df23db2f9b5f147c68 (diff) | |
| download | boca-f2616c784f4ecc07d8c846fe61bd1b798eb396b4.tar.gz boca-f2616c784f4ecc07d8c846fe61bd1b798eb396b4.zip | |
move tst out of public
Diffstat (limited to 'tools/tst.php')
| -rw-r--r-- | tools/tst.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/tst.php b/tools/tst.php new file mode 100644 index 0000000..38f5fd0 --- /dev/null +++ b/tools/tst.php @@ -0,0 +1,11 @@ +<?php + +header('Content-type: image/png'); + +$smile=imagecreatefrompng("../images/balloon4.png"); +imageSaveAlpha($smile, true); +$kek=imagecolorallocate($smile,0,0,255); +imagefill($smile,12,25,$kek); +imagepng($smile); + +?> |