This commit is contained in:
2025-02-26 14:49:25 +07:00
commit 1c1d9c4474
6403 changed files with 1953774 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/**
* DicomElement.js
* Version 0.5
* Author: BabuHussain<babuhussain.a@raster.in>
*/
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;
}