CaTaLinU Posted March 1, 2012 Share Posted March 1, 2012 I tried to do something like createimagefrompng and then to add some texts <?php header('Content-Type: image/gif'); $newimg = imagecreatetruecolor( 450, 95 ) or die ( 'GD Library not available atm.' ); $cs = ImageCreateFromgif("boobs.gif"); $color_white = imagecolorallocate($newimg, 255, 255, 255); imagettftext($cs,10,0,5,14,$color_white,"fonts/font_captcha.ttf","TextLeft"); imagettftext($cs,7,0,190,14,$color_white,"fonts/font_captcha.ttf","TextRight"); imagegif($cs); imagedestroy($cs); ?> Can someone help me with something like this ? I want that the gif image what would result in the php file to be animated , and on it to add some texts! Thanx for help ! Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/ Share on other sites More sharing options...
blacknight Posted March 1, 2012 Share Posted March 1, 2012 using gd in php loses the animation in gif images if i remember wright Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/#findComment-1322797 Share on other sites More sharing options...
CaTaLinU Posted March 1, 2012 Author Share Posted March 1, 2012 so with that exemple it won't work right? Other script exists? Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/#findComment-1322798 Share on other sites More sharing options...
blacknight Posted March 1, 2012 Share Posted March 1, 2012 http://www.daniweb.com/web-development/php/threads/129485 i guess its possable but i have never used it .... Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/#findComment-1322802 Share on other sites More sharing options...
CaTaLinU Posted March 1, 2012 Author Share Posted March 1, 2012 Other scripts ? Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/#findComment-1322842 Share on other sites More sharing options...
litebearer Posted March 1, 2012 Share Posted March 1, 2012 Google - php create animated gifs ... http://www.google.com/#hl=en&sclient=psy-ab&q=php+create+animated+gif+images&pbx=1&oq=php+create+ani&aq=1v&aqi=g1g-v3&aql=&gs_sm=1&gs_upl=1561l5207l0l8768l14l10l0l4l4l0l488l1959l0.6.3.0.1l14l0&gs_l=hp.1.1.0j0i15l3.1561l5207l0l8769l14l10l0l4l4l0l488l1959l0j6j3j0j1l14l0&bav=on.2,or.r_gc.r_pw.r_qf.,cf.osb&fp=a68e044ac40f9721&biw=1024&bih=618 Quote Link to comment https://forums.phpfreaks.com/topic/258054-help-with-createimagefromgif/#findComment-1322845 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.