Anyone know which bit of code to hack to allow me to change the font size of maps to something more useful when used on large LCD monitoring screens?
Thanks!
Thanks!
if($label_line!="")
{
ImageFilledRectangle($im,
$x_label-2, $y_label,
$x_label+ImageFontWidth(2)*strlen($label_line), $y_label+ImageFontHeight(2),
$white);
ImageString($im, 2, $x_label, $y_label, $label_line,$label_color);
}
if($info_line!="")
{
ImageFilledRectangle($im,
$x_info-2, $y_info,
$x_info+ImageFontWidth(2)*strlen($info_line), $y_info+ImageFontHeight(2),
$white);
ImageString($im, 2, $x_info, $y_info, $info_line,$color);
}

Comment