View Single Post
ישן 19-07-07, 12:18   # 7
-roee-
חבר על
 
מיני פרופיל
תאריך הצטרפות: Nov 2005
מיקום: IL
הודעות: 864

-roee- לא מחובר  

הצלחתי ליצור פס על כל האורך ורשמתי עליו משהו:
PHP קוד:
// Set the content-type
//header("Content-type: image/jpeg");

// Create the image
$im imagecreatefromjpeg("test.jpg");
list(
$width$height) = getimagesize("test.jpg");

// Create some colors
$white imagecolorallocate($im0x000x000x00);
$grey imagecolorallocate($im128128128);
$black imagecolorallocate($im255255255);
imagefilledrectangle($im00$width15$white);

// The text to draw
$text 'Bla bla bla bla';
// Replace path by your own font path
$font 'tahoma.ttf';

// Add some shadow to the text
imagettftext($im1001113$grey$font$text);

// Add the text
imagettftext($im1001012$black$font$text);

imagejpeg($im);
imagedestroy($im); 
הבעיה היא שהוא בתחילת (בלמעלה) התמונה ולא בתחתית..
איך אני מוריד אותו שיהיה בתחתית?

תודה רבה
__________________
בברכה,
רועי

Last edited by -roee-; 19-07-07 at 12:38..
  Reply With Quote