aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCassio de Campos <cassiopc@gmail.com>2017-09-08 16:27:06 +0000
committerCassio de Campos <cassiopc@gmail.com>2017-09-08 16:27:06 +0000
commitf2616c784f4ecc07d8c846fe61bd1b798eb396b4 (patch)
tree2b6911ef98d8ad18c8f1677a3a7cf57d943911e0 /tools
parent37d218f5940fd4fbf3a257df23db2f9b5f147c68 (diff)
downloadboca-f2616c784f4ecc07d8c846fe61bd1b798eb396b4.tar.gz
boca-f2616c784f4ecc07d8c846fe61bd1b798eb396b4.zip
move tst out of public
Diffstat (limited to 'tools')
-rw-r--r--tools/tst.php11
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);
+
+?>