Forum Moderators: coopster
Basicaly i want a way to make it so if a check box is ticked then it will make the text output bold
return $result;
}
//echo $color;
//echo substr($color,0,2);
$r = hextodes(substr($color,0,2));
$g = hextodes(substr($color,2,2));
$b = hextodes(substr($color,4,2));
//$user_width = imagettfbbox(9, 0,$font['font_url'], $text);
//$x_value = (200 - ($user_width[2] + 101));
//echo $b;
$color = imagecolorallocate($im,$r,$g,$b);
imagettftext($im, $height, $angle , $x, $y, $color, $font['font_url'], $text);
imagepng($im);
header('Content-type: ' . image_type_to_mime_type(IMAGETYPE_WBMP));
image2wbmp($im);
imagedestroy($im);
?>
>>or italic
Check out imagepsslantfont [us3.php.net].
Anyway, I wish you luck. You may be able to find something at [phpclasses.org...] that does what you want.
the following should get you on the road
From PHP Manual [us3.php.net]