<?php
 
require_once('Extended_resource.class.php');
 
 
$x=new resource('imagecreate(1000,98)');
 
header("Content-Type: image/png");
 
$background_color = imagecolorallocate($x->r(), 0, 0, 0);
 
$text_color = imagecolorallocate($x->r(), 233, 14, 91);
 
$text_color2 = imagecolorallocate($x->r(), 233, 233, 91);
 
$text_color3= imagecolorallocate($x->r(), 233, 91, 233);
 
imagestring($x->r(), 4, 25, 25,  "Extended resource Object is useless but is there nevertheless (*_*)", $text_color);
 
imagestring($x->r(), 4, 556, 25,  "(*_-)", $text_color2);
 
imagestring($x->r(), 4, 591, 25,  "(-_-)", $text_color3);
 
imagepng($x->r());
 
unset($x);
 
?>
 
 |