|
|
[Back to list] [Execute]
<?php
// Velox Letum (2005)
// elementation@gmail.com
// http://www.nanoshock.net
// Print default imagestring font pixel sizes
for ($i = 1; $i <= 5; $i++) {
echo $i . ' string font height: ' . imagefontheight($i) . '<br />';
echo $i . ' string font width: ' . imagefontwidth($i) . '<br />';
}
?>
|
|
|