<?php
/*************************************************************
* This script is developed by Arturs Sosins aka ar2rsawseen, http://webcodingeasy.com
* Feel free to distribute and modify code, but keep reference to its creator
*
* Image Font class can generate text taking images of symbols as font.
* You can provide path to directory with images, using symbols as file names,
* or you can provide and array with symbols as keys and paths to images as values.
* It is also possible to set a maximal width restriction and alignment of text.
*
* For more information, examples and online documentation visit:
* http://webcodingeasy.com/PHP-classes/Generate-text-using-images-as-letters
**************************************************************/
//array with symbol images
$symbols = array(
"0" => "./digits/0.png",
"1" => "./digits/1.png",
"2" => "./digits/2.png",
"3" => "./digits/3.png",
"4" => "./digits/4.png",
"5" => "./digits/5.png",
"6" => "./digits/6.png",
"7" => "./digits/7.png",
"8" => "./digits/8.png",
"9" => "./digits/9.png"
);
//create class instance with symbol array
include("image_font.php");
$imf = new image_font($symbols);
//provide text
$imf->apply_font("1010101");
//output image to browser
$imf->output();
?>
|