Image.constructor (creator)
constructor function for image objects

Sourcecode in Image/objectFunctions.js:
1:   function constructor(creator) {
2:      this.creator = creator;
3:      this.createtime = new Date();
4:      return this;
5:   }