これは私がやろうとしてきたことですが、常に壊れた画像が表示されます。エラー報告も有効にしましたが、すべてが正常に返されるようです..画像が表示されないだけです. :(
http://www.tradenepal.com.np/test.php
<?php
//Report all Errors
ini_set("display_errors", "1");
error_reporting(E_ALL);
//Set content type
header('content-type: image/jpeg');
//Store the values of our date in separate variables
list($month, $day, $year) = explode('/', date('F/jS/Y'));
//Load our base image
$image = imagecreatefrompng('calendar_blank.png');
$image_width = imagesx($image);
//Setup colors and font file
$white = imagecolorallocate($image, 255, 255, 255);
$black = imagecolorallocate($image, 0, 0, 0);
$font_path = 'advent_light';
//Get the positions of the text string
$pos_month = imagettfbbox(13, 0, $font_path, $month);
$pos_day = imagettfbbox(25, 0, $font_path, $day);
$pos_year = imagettfbbox(8, 0, $font_path, $year);
//Create Month
imagettftext($image, 13, 0, ($image_width - $pos_month[2]) / 2, 40, $white, $font_path, $month);
//Create Day
imagettftext($image, 25, 0, ($image_width - $pos_day[2]) / 2, 80, $black, $font_path, $day);
//Create Year
imagettftext($image, 8, 0, ($image_width - $pos_year[2]) / 2, 100, $black, $font_path, $year);
//Create final image
imagejpeg($image, '', 100);
//Clear up memory;
imagedestroy($image);
?>