Cleaned functions.

Added room for image aspect ratio. Implemented soon.
This commit is contained in:
Savetheinternet 2010-11-04 03:10:47 +11:00
parent 1e20121224
commit a2a404f1da
3 changed files with 56 additions and 22 deletions

View file

@ -222,6 +222,11 @@
return array ( $nameo );
}
}
function fraction($numerator, $denominator, $sep) {
$fraction = Array($numerator, $denominator);
return "{$fraction[0]}{$sep}{$fraction[1]}";
}
/*********************************************/
/* Fonction: imagecreatefrombmp */