PHP Classes

File: counter_img.php

Recommend this page to a friend!
  Classes of Jon Pulice   JPCounterClass   counter_img.php   Download  
File: counter_img.php
Role: Auxiliary script
Content type: text/plain
Description: Counter Image File
Class: JPCounterClass
Count the accesses to a site using MySQL tables
Author: By
Last change: minor change
Date: 18 years ago
Size: 517 bytes
 

Contents

Class file image Download
<?php

$in
= $_GET['data'];
$in = base64_decode($in);

$ar = explode(":", $in);

$ar['col'] = $ar[0];
$ar['num'] = $ar[1];
$ar['fil'] = $ar[2];

Header("Content-type: image/png");
$im = ImageCreateFromPNG("./images/{$ar['fil']}");
$blue = ImageColorAllocate($im, 0, 0, 100);

$font = "verdana.ttf";

$txtw = ImageFontWidth($font) * strlen($ar['num']);
$x = 50 - ($txtw / 2);

//add the number
ImageTTFText($im, 14, 0, $x, 24, $blue, $font, $ar['num']);

ImagePNG($im);
ImageDestroy($im);

?>