The editor supports two different methods of image loading.
You can set the parameter "load" for DrawCanvas applet, for example:
<param name="load" value="images/myimage.png">The value of the parameter must be a URL of a PNG, JPEG, GIF, or BMP image located at your server.
<param name="image" value="iVBORw0KGgoAAAAN...lFTkSuQmCC">
The value of the parameter must be PNG or JPEG or GIF or BMP file encoded by BASE64 method.
For example, you can pass the data saved by the methods
HTML form + JavaScript or POST with BASE64.
When the user goes to another web page (whether at your website or not) and then comes back, all the drawing changes are destroyed. You can avoid such behaviour by activating the editor's caching mechanism. To turn on the caching you have to use the DrawCanvas parameter pageid.
<param name="pageid" value"... any string ...">
pageid value should be any character string unique for every page loading.
A couple of notes on image caching: