fork download
  1. <?php
  2. header('Content-type: image/png');
  3. putenv('GDFONTPATH=' . realpath('.'));
  4. $figure = imagecreatetruecolor(400, 30);
  5. $color_blue = imagecolorallocate($figure,255,255,255);
  6. imagefill($figure, 0, 0, $color_blue);
  7. imagepng($figure);
  8. ?>
Success #stdin #stdout 0.01s 20600KB
stdin
Standard input is empty
stdout