GD Images
If you dump a gd-image, it is displayed as a base64-encoded string in an
img tag. IE doesn't support this, but it has the advantage that
no additional loading is necessary which would stop HLI from working out of
the box.
visit HLI#X
1. pre($im) type: gd (resource)
in builder\plugins\imageDump.php on line 18 5 if (!include dirname(__FILE__).'/../../globals.php') {
6 return;
7 }
8 echo $head
9 ?>
10 <p>
11 If you dump a gd-image, it is displayed as a base64-encoded string in an
12 <code>img</code> tag. IE doesn't support this, but it has the advantage that
13 no additional loading is necessary which would stop HLI from working out of
14 the box.
15 </p>
16 <?php
17 $im = imagecreatefromjpeg('../images/Einstein5.jpg');
18 pre($im);
19 ?>
20 <?php
21 echo foot()
22 ?>
/
*** global scope ***