Open a core.func.php,line 556-563:
Code:
if($info==1)
{
$d_img = imagecreatetruecolor($info_x, $info_y);
$black = ImageColorAllocate($d_img, 0, 0 ,0 );
$white = ImageColorAllocate($d_img, 255, 255 ,255 );
$imagestring ($d_img, $font, $str_x, $str_y, $string, $white);
imagecopyresized($d_img, $s_img, 0, 0, 0, 0, $new_x, $new_y, $old_x, $old_y);
}
Change to:
Code:
if($info==1)
{
$d_img = imagecreatetruecolor($info_x+2, $info_y+1);
$black = ImageColorAllocate($d_img, 0, 0 ,0 );
$white = ImageColorAllocate($d_img, 255, 255 ,255 );
$imagestring ($d_img, $font, $str_x, $str_y, $string, $white);
imagecopyresized($d_img, $s_img, 1, 1, 0, 0, $new_x, $new_y, $old_x, $old_y);
}
Example:
