View Single Post
  #2 (permalink)  
Old 06-10-2005, 08:55 PM
jitender's Avatar
jitender jitender is offline
Site Admin
 
Join Date: Jun 2004
Posts: 1,200
jitender has a spectacular aura aboutjitender has a spectacular aura aboutjitender has a spectacular aura about
iTrader: (0)
Default

php support the GD Graphic, with this you can display the image on run time, you can genrate the png/gif file with php

PHP Code:
<?php

header
("Content-type: image/png");
$string 'Any Text';
$im    imagecreatefrompng("images/button1.png");
$orange imagecolorallocate($im22021060);
$px    = (imagesx($im) - 7.5 strlen($string)) / 2;
imagestring($im3$px9$string$orange);
imagepng($im);
imagedestroy($im);
?>


Regards
Jitender
__________________
Free Webmaster Tools - Free SEO Tools
phpLDHacks - Add your template or Hack and earn money
Text Link Ads - Buy & Sell text link ads

Last edited by jitender : 06-10-2005 at 09:00 PM.
Reply With Quote