This example shows how to make graphical counter in php gd.
This example shows how to make graphical counter in php gd.<?php
define(
"C_DIGITS", "images.jpg");define(
"DIGIT_WIDTH", 12);define(
"DIGIT_HEIGHT", 13); $number;settype(
$number, "string");imagecopy(
$img, $digits, $dest_x_offset, 1,DIGIT_WIDTH +
1,DIGIT_HEIGHT +
1); $dest_x_offset += DIGIT_WIDTH;}
header(
"Content-Type: image/jpeg");imagejpeg(
$img);?>
After running the program you will get the following output