Please tell me what should I do to this code, I'am about to convert a byte data to base64 string. The code below will only just translate the image file to inputstream and I can't figure out how am I going to convert it to base64.
var MyView:NotesView = database.getView("uploadforms");
var uploadPhoto:NotesDocumentCollection = MyView.getAllDocumentsByKey("uploadphoto");
var input:java.io.InputStream = uploadPhoto.getFirstDocument().getAttachment("photo").getInputStream();
var data = -1;
var myArray = new Array();
while ((data = input.read()) != -1) {
}