aboutsummaryrefslogtreecommitdiff
path: root/tools/tst.php
blob: 38f5fd0323d48bd46772b83e0921b29dea028b2b (plain)
1
2
3
4
5
6
7
8
9
10
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);

?>