/** * DicomElement.js * Version 0.5 * Author: BabuHussain */ function DicomElement(name,vr,vl,group,element,value,offset) { this.vr_type=vr; // Element Value this.value=value; // Element code this.code; this.length=vl; this.header; this.group=group; this.element=element; this.offset=offset; this.name=name; this.transfer_syntax; }