OK, for the base64data notice, on line 270 replace;
if($icheck->check()) {
// we have the base64 image in cache
$headAndData=$icheck->retrieve();
} else {
with
if($icheck->check()) {
// we have the base64 image in cache
$headAndData=$icheck->retrieve();
$_base64data=explode(";base64,",$headAndData);
$base64data=$_base64data[1];
} else {
Could you confirm if these two fixes make the notices go away? I'll make sure both go in the next AO-version.
Have a nice Sunday,
frank