Updating submodules
[hiphop-php.git] / hphp / test / slow / ext_image / 1790.php
blob70c1cca9d76517d2c3d01fa97a111381ba4d2b80
1 <?hh
4 // Create a 100*30 image
5 <<__EntryPoint>>
6 function main_1790() {
7 $im = imagecreate(100, 30);
8 // White background and blue text
9 $bg = imagecolorallocate($im, 255, 255, 255);
10 $textcolor = imagecolorallocate($im, 0, 0, 255);
11 // Write the string at the top left
12 imagestring($im, 5, 0, 0, 'Hello world!', $textcolor);
13 // Output the image
14 ob_start();
15 imagepng($im);
16 $md5 = md5(ob_get_clean());
17 imagedestroy($im);
18 echo "md5: $md5\n";