here is what I have so far!

the code is here (but its messy):
<?
# Define Content
header("Content-type: image/png");
$im = ImageCreate(100, 20);
ImageColorAllocate($im, 255,0,0);
# Creates the "J"
$j_zero = array("0", "0", "1", "1", "1", "1", "1", "1", "1", "1");
$j_one = array("0", "0", "1", "1", "1", "1", "1", "1", "1", "1");
$j_two = array("0", "0", "0", "0", "0", "0", "0", "0", "1", "1");
$j_three = array("0", "0", "0", "0", "0", "0", "0", "0", "1", "1");
$j_four = array("0", "0", "0", "0", "0", "0", "0", "0", "1", "1");
$j_five = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$j_six = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$j_seven = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$j_eight = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$j_nine = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$letterJ = array($j_zero, $j_one, $j_two, $j_three, $j_four, $j_five, $j_six, $j_seven, $j_eight, $j_nine);
# Creates the "U"
$u_zero = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_one = array("1", "1", "0", "00", "0", "0", "0", "0", "1", "1");
$u_two = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_three = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_four = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_five = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_six = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_seven = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$u_eight = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$u_nine = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$letterU = array($u_zero, $u_one, $u_two, $u_three, $u_four, $u_five, $u_six, $u_seven, $u_eight, $u_nine);
# Creates the "B"
$b_zero = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$b_one = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$b_two = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$b_three = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$b_four = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$b_five = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$b_six = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$b_seven = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$b_eight = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$b_nine = array("1", "1", "1", "1", "1", "1", "1", "1", "0", "0");
$letterB = array($b_zero, $b_one, $b_two, $b_three, $b_four, $b_five, $b_six, $b_seven, $b_eight, $b_nine);
# Creates the "A"
$a_zero = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$a_one = array("0", "0", "1", "1", "1", "1", "1", "1", "0", "0");
$a_two = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$a_three = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$a_four = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$a_five = array("1", "1", "1", "1", "1", "1", "1", "0", "1", "1");
$a_six = array("1", "1", "1", "1", "1", "1", "0", "0", "1", "1");
$a_seven = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$a_eight = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$a_nine = array("1", "1", "0", "0", "0", "0", "0", "0", "1", "1");
$letterA = array($a_zero, $a_one, $a_two, $a_three, $a_four, $a_five, $a_six, $a_seven, $a_eight, $a_nine);
$color = 255255255;
$x_start = 20;
$y_start = 5;
# Function to display pixels in letters
function drawLetter($b, $image, $x, $y, $color)
{
for($i=0;$i<sizeof($b);$i++)
{
for($j=0;$j<sizeof($b[0]);$j++)
{
if($b[$i][$j] == 1)
{
ImageSetPixel($image, $x + $j, $y + $i, $color);
}
}
}
$x_start = $x_start + 15;
}
drawLetter($letterJ, $im, $x_start, $y_start, $color);
$x_start = $x_start + 15;
drawLetter($letterU, $im, $x_start, $y_start, $color);
$x_start = $x_start + 15;
drawLetter($letterB, $im, $x_start, $y_start, $color);
$x_start = $x_start + 15;
drawLetter($letterB, $im, $x_start, $y_start, $color);
$x_start = $x_start + 15;
drawLetter($letterA, $im, $x_start, $y_start, $color);
$x_start = $x_start + 15;
ImagePNG($im);
ImageDestroy($im);
?>
Once I have more time to work on it, I will make the code better, shorter, and more efficient.
But if you are interested then I might as well show you now 