JPEG 2000 Codestream
image/j2c
Released 2000
· by Joint Photographic Experts Group (JPEG)
The image/j2c MIME type represents a raw JPEG 2000 Codestream. Unlike the standard image/jp2 format, which encapsulates the image in a structured container alongside color profiles and metadata, an image/j2c file contains only the raw, wavelet-compressed pixel data. It is heavily used in professional broadcasting, Digital Cinema Packages (DCP), and medical imaging architectures where metadata and timing are handled externally by multiplexing formats (like MXF).
Technical Specifications
.j2c.j2k.jpc
Discrete Wavelet Transform (DWT)
image/x-jp2-codestream
Magic Bytes & HTTP Headers
ÿOÿQ
Browser Support Matrix
| Browser | Status | Min Version |
|---|---|---|
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | — |
|
|
Not Supported | Legacy |
Advantages & Limitations
- Provides state-of-the-art wavelet compression for high-end professional workflows (Digital Cinema)
- Allows for highly efficient progressive decoding (by resolution or quality layer) natively within the stream
- Supports lossless mathematical compression and high bit-depths (up to 16-bit per channel) natively
- Lacks a standard container to store color space info or metadata, requiring external systems (like MXF or DICOM) to map colors correctly
- Extremely computationally expensive to encode and decode compared to standard DCT-based JPEG
- Zero web browser support
Developer Code Snippets
File Detection Steps
How to programmatically detect a image/j2c
file by reading its raw bytes:
- 1 Check the first 2 bytes for the Start of Codestream (SOC) marker: FF 4F
- 2 Verify the following 2 bytes for the SIZ marker: FF 51
- 3 Unlike JP2 files which start with a standard box structure ('jP ' / 00 00 00 0C 6A 50 20 20), J2C skips the container entirely and starts directly with the SOC marker.
Software Support
ImageMagick
Conversion Tools
Share & Embed
[](https://freewebptojpg.com/mime/image/j2c)
<iframe src="https://freewebptojpg.com/mime/image/j2c/embed" width="100%" height="280" style="border:1px solid #cbd5e1;border-radius:8px;" title="J2C Specs"></iframe>
JSON API
All data on this page is available as a free, open JSON API. Use it in your project, documentation, or tooling.
GET https://freewebptojpg.com/mime/image/j2c.json
Open JSON
Frequently Asked Questions
What is the difference between JP2 and J2C?
JP2 (image/jp2) is a container format that includes a JPEG 2000 codestream alongside essential metadata like ICC color profiles, resolution, and EXIF data. J2C (image/j2c) is purely the raw, compressed image data stream (the codestream) stripped of this outer container.
What are the magic bytes for a J2C codestream?
A raw JPEG 2000 codestream always begins with the Start of Codestream (SOC) marker, which is the 2-byte hex sequence FF 4F. This is immediately followed by the Image and Tile Size (SIZ) marker, FF 51. So, the first 4 bytes are typically FF 4F FF 51.
Can I display image/j2c files in a web browser?
No. While Apple's Safari browser has native support for the JP2 container format, no modern web browsers support decoding raw J2C codestreams. For web delivery, they must be converted to standard formats like WebP, AVIF, or JPEG.