View file Signature_Creator/signature/pic.php

File size: 666B
<?php
//////////////////////////////////
//   АВТОР: HARUKA
//   HTTP://SCRIPT-PLANET.CN
//   haruka@script-planet.cn
//   ICQ: 444-977-782
//////////////////////////////////
//   DarkSide!
//////////////////////////////////
if (
isset($_GET['pict'])
and $_GET['pict']=='green'
or $_GET['pict']=='red'
or $_GET['pict']=='blue'
or $_GET['pict']=='violet'
or $_GET['pict']=='yellow'
){
$funci="imagecreatefromjpeg";
$im = @$funci("img/".$pict.".JPG");
$color = ImagecolorAllocate($im,$R,$G,$B);
ImageString ($im, $font, $X, $Y,"$text",$color);
@header("Content-type: image/gif");
@imagegif($im);
}
else
{
header("Location: index.php");
}
?>