aboutsummaryrefslogtreecommitdiff
path: root/src/images
diff options
context:
space:
mode:
authorBruno Ribas <brunoribas@gmail.com>2017-10-14 02:20:58 +0000
committerBruno Ribas <brunoribas@gmail.com>2017-10-14 02:20:58 +0000
commit7be0ffdae22ae84a10259793c6731597443711cc (patch)
tree26c2926b298f2529fc64ed02f92466238f74b20f /src/images
parent1b75b5f86c9aeb91044708153b439c2e7c8710b1 (diff)
parent5876077b0279e71d6b6c8c8ba22c0c1e0af1536c (diff)
downloadboca-7be0ffdae22ae84a10259793c6731597443711cc.tar.gz
boca-7be0ffdae22ae84a10259793c6731597443711cc.zip
Merge branch 'master' of github.com:cassiopc/boca
Diffstat (limited to 'src/images')
-rw-r--r--src/images/tst.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/images/tst.php b/src/images/tst.php
deleted file mode 100644
index 38f5fd0..0000000
--- a/src/images/tst.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?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);
-
-?>