Create image from text using PHP

function createImageFromText($text,$fontSize=12,$fontColor=”#FFF”,$imageSize=array(300,50),$fontFamily=”arial.ttf”,$rotationAngle=0, $xCoordinate=20, $yCordinate=120){ header(“Content-type: image/png”); //Picture Format header(“Expires: Mon, 01 Jul 2003 00:00:00 GMT”); // Past date header(“Last-Modified: ” . gmdate(“D, d M Y H:i:s”) . ” GMT”); // Consitnuously modified header(“Cache-Control: no-cache, must-revalidate”); // HTTP/1.1 header(“Pragma: no-cache”); // NO CACHE /*image generation code*/ //create Image of size 350px […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top