
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@cornerstonejs/dicom-codec
Advanced tools
DICOM Codecs for JavaScript (browser and node support).
| codec name | transferSyntaxUID(s) | decode | encode | external codec | js/wasm based |
|---|---|---|---|---|---|
| LittleEndian | 1.2.840.10008.1.2 1.2.840.10008.1.2.1 1.2.840.10008.1.2.1.99 | - | - | - | - |
| BigEndian | 1.2.840.10008.1.2.2 | - | - | - | - |
| LibjpegTurbo8Bit | 1.2.840.10008.1.2.4.50 | X | X | X | X |
| LibjpegTurbo12Bit | 1.2.840.10008.1.2.4.51 | - | - | - | - |
| JpegLossless | 1.2.840.10008.1.2.4.57 1.2.840.10008.1.2.4.70 | X | - | X | - |
| Jpegls | 1.2.840.10008.1.2.4.80 1.2.840.10008.1.2.4.81 | X | X | X | X |
| Jpeg2000 | 1.2.840.10008.1.2.4.90 1.2.840.10008.1.2.4.91 | X | X | X | X |
| RleLossless | 1.2.840.10008.1.2.5 | X | - | - | - |
| HTJ2K | 1.2.840.10008.1.2.202 (201,203 as well) | X | X | X | X |
v0.0.11: support for LibjpegTurbo12Bit v.0.0.12 support for encoding options. v1.0.0: support for browser (dynamic loading included) and node.
# Restore packages
yarn
# Build
yarn run build
Commonjs
const dicomCodec = require('@cornerstonejs/dicom-codec');
....
const imageFrame = ....// see API
const imageInfo = {} // add here image information (see API)
const result = await dicomCodec.transcode(imageFrame, imageInfo, sourceTransferSyntaxUID, targetTransferSyntaxUID);
const pixelData = dicomCodec.getPixelData(result.imageFrame, result.imageInfo);
ES6
import dicomCodec from '@cornerstonejs/dicom-codec';
...
const imageFrame = ....// see API
const imageInfo = {} // add here image information (see API)
const result = await dicomCodec.transcode(imageFrame, imageInfo, sourceTransferSyntaxUID, targetTransferSyntaxUID);
const pixelData = dicomCodec.getPixelData(result.imageFrame, result.imageInfo);
async function that decodes an image
Parameters (It does not mutate any param):
Returns:
Decode does not occur if there is no codec for sourceTransferSyntaxUID or related codec's transferSyntaxUID refers to uncompressed.
async function that encodes an image
Parameters (It does not mutate any param):
Returns:
Encode does not occur if there is no codec for targetTransferSyntaxUID or related codec's transferSyntaxUID refers to uncompressed.
async function that transcodes an image (decodes and then encodes)
Parameters (It does not mutate any param):
Returns:
Transcode might not occur depending on transferSyntaxUID's params (see above).
function that returns formatted imageFrame based on imageInfo Some of codecs might have specific rules for pixelData based on imageInfo.
Parameters (It does not mutate any param):
Returns:
function that set up dicom-codec configuration properties Parameters (It does not mutate any param ):
TBD
FAQs
Unknown package
We found that @cornerstonejs/dicom-codec demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.