<?
# CONFIGURATION FILE
# -------------------------------------------------------------------------------
# Name: Pictoru's Gif Title
# Author: Ciprian Voicu
# Version: 1.0
# Date: 2006-08-29
# Description: • creates and outputs gif images from ttf fonts, usefull for
# texts which are not supported by the browsers
# License: GNU GPL
# -------------------------------------------------------------------------------
error_reporting(E_ALL);
# this defines the location of the fonts folder relativ to this file
# change the $font_folder value with the location of your fonts folder
# put in that font your fonts
$font_folder="fonts";
define("IMG_FONT_FOLDER", realpath(dirname(__FILE__)."/".$font_folder)."/");
# insert a new item in this array for your new font.
# the key will be the identifier into the class
define("IMG_TTF_FONTS", serialize(array(
1=>"Swiss721CondensedBT.ttf",
2=>"Requiem.ttf",
)));
?>
|