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 […]

Permutation Functions

$array = array(‘rajan’, ‘kumar’, ‘maharjan’);function permutation($arr, $temp_string, &$collect) {    if ($temp_string != “”)         $collect []= $temp_string;    for ($i=0; $i<sizeof($arr);$i++) {        $arrcopy = $arr;        $elem = array_splice($arrcopy, $i, 1);        if (sizeof($arrcopy) > 0) {            permutation($arrcopy, $temp_string .” ” . $elem[0], $collect);        } else {            $collect []= $temp_string. ” ” . $elem[0];        }       }   } $collect = array();permutation($array, “”, $collect);for($i=0;$i<count($collect);$i++){    for($j=0;$j<=$i;$j++){        $spaceCountI = explode(” “,$collect[$i]);        $spaceCountJ = explode(” “,$collect[$j]);               if($spaceCountJ>=$spaceCountI){            $temp = $collect[$j];            $collect[$j] = $collect[$i];            $collect[$i] = $temp;            }        }    }echo “<pre>”;print_r(array_reverse($collect));echo “</pre>”; 

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

Back To Top