aboutsummaryrefslogtreecommitdiff
path: root/tools/tst.php
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tst.php')
-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);
+
+?>