Search results

  1. S

    Where can i find a simple php interpreter written in flex and bison?

    when i say flex i mean lex, and with bison i mean YACC.
  2. S

    What is the difference between imagecreatefrompng and imagecreatefromjpeg in php...

    ...scripting? I wrote this function and it doesn't work if the image is a png file. function resizeImage($originalImage,$toWidth,$toHeight) { list($width, $height) = getimagesize($originalImage); $xscale=$width/$toWidth; $yscale=$height/$toHeight; if ($yscale>$xscale){ $new_width =...
Back
Top