@sbillard ... forget what I said ... I got it to work after nulling everything I did not need with "" adding null is a bad thing smh.
reference:
http://www.zenphoto.org/documentation/classes/ThemeObject.html#methodaddComment
$id = "someid";
$row = query_single_row('SELECT '.prefix("images").'.id, '.prefix("images").'.filename, '.prefix("albums").'.folder FROM
'.prefix("images").' LEFT JOIN '.prefix("albums").' ON '.prefix("images").'.albumId = '.prefix("albums").'.id
WHERE
'.prefix("images").'.id='.$id, true);
$albumobject = new Album(new Gallery(),$row['folder']);
$imageobject = newImage($albumobject, $row['filename']);
$username = 'Joh Doe';
$commentText = 'HELLO Blaster World';
$postcomment = $imageobject->addComment($username, 'fake-email.com', '', $commentText, '','' , '', '', '', '');
echo 'postcomment '. $postcomment;