Should this show my text? because it shows my image but no text
<?php
// File and new size
$filename = 'rnr_images/card1_back.jpg';
$percent = 0.75;
// Content type
header('Content-type: image/jpeg');
// Get new sizes
list($width, $height) = getimagesize($filename);
$newwidth = $width * $percent;
$newheight = $height * $percent;
// Load
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);
$black = imagecolorallocate($thumb, 0x00, 0x00, 0x00);
imagefttext($thumb, 26, 0, 105, 55, $black, 'rnr_images/AnnabelScript.ttf', 'PHP Manual tesintg');
// Resize
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
// Output
imagejpeg($thumb);
?>