Hi,
I understand that there's currently a imagecreatefrompng() that allows coders to create an image on the fly and input text with imagestring().
at this moment, i'm faced with the problem of trying to the same thing but with indentation such that i can specify where i want to place the text on the image. using the generic functions will only enable me to specify where the text will start but what i would like to do is create an image from a html table -->
e.g.
<table background="something.png">
<tr>
<td width="xx" height="height"></td>
</tr>
<tr>
<td>text</td>
</tr>
</table>
this way , i can specify top, left, bottom and even msg indentation width/ height...
so is there anyway i can convert it into an image?