diff options
| author | Bruno Ribas <brunoribas@gmail.com> | 2017-10-14 02:20:58 +0000 |
|---|---|---|
| committer | Bruno Ribas <brunoribas@gmail.com> | 2017-10-14 02:20:58 +0000 |
| commit | 7be0ffdae22ae84a10259793c6731597443711cc (patch) | |
| tree | 26c2926b298f2529fc64ed02f92466238f74b20f /tools | |
| parent | 1b75b5f86c9aeb91044708153b439c2e7c8710b1 (diff) | |
| parent | 5876077b0279e71d6b6c8c8ba22c0c1e0af1536c (diff) | |
| download | boca-7be0ffdae22ae84a10259793c6731597443711cc.tar.gz boca-7be0ffdae22ae84a10259793c6731597443711cc.zip | |
Merge branch 'master' of github.com:cassiopc/boca
Diffstat (limited to 'tools')
| -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); + +?> |