Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 454 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 454 Bytes

dwc - DICOM Web Client

Provide an easy to use API to access a Dicomweb compliant server.

Example

const factory = new dwc.DicomFactory('http://localhost:8080');
const studies = await factory.studies();
const study = await studies[0].metadata();
const seriess = await studies[0].series();
const instances = await seriess[0].instances();
// render the native view of that instance
const thumbnail = await instances[0].thumbnail();