0XC00D1038

Fix JPEG error 0XC00D1038: CCIR601 not supported on Windows

Windows 10/11 gives this error when trying to open a JPEG with CCIR601 color data. Corrupted file metadata or missing codecs are the usual culprits. Here's how to fix it.

Corrupted JPEG metadata with CCIR601 color data

I know this error is infuriating. You double-click a perfectly normal-looking JPEG and Windows throws that 0XC00D1038 code right in your face. The most common trigger: you downloaded or received a JPEG from a digital camera, scanner, or an old photo app that wrote CCIR601 (ITU-R BT.601) color space data into the file's metadata. Windows Photos and the legacy Photo Viewer can't parse that, so they bail.

The real fix here is to strip that metadata without re-encoding the whole image. Here's what works every time for me:

  1. Download exiftool from the official site (it's a tiny command-line tool).
  2. Open Command Prompt as admin and navigate to where the JPEG lives.
  3. Run this:
    exiftool -overwrite_original -ColorSpaceData= -ColorSpace= -ICC_Profile= yourfile.jpg
  4. This removes the CCIR601-specific tags that confuse Windows. The file opens immediately after.

If you're not comfortable with CLI, use IrfanView (free, no bloat). Open the JPEG there, press Ctrl+Shift+S, uncheck “Save metadata”, and save as a new file. IrfanView won't write the wonky CCIR601 tags.

Skip reinstalling Windows or running SFC — that won't touch file metadata. This is purely a file-level problem.

Missing HEIF or JPEG XR codecs on Windows 10/11

Less common but happens when the JPEG actually uses a newer compression variant like JPEG XR or has HEIC-like color encoding. Windows 10 1903 and later dropped some legacy codecs. If you're seeing 0XC00D1038 across multiple JPEGs — not just one — this is your culprit.

Here's the fix:

  1. Open the Microsoft Store and search for “HEIF Image Extensions” — install that.
  2. Also install “HEVC Video Extensions” from the device manufacturer (it's free if you grab it from the link on Microsoft's site, otherwise it costs $0.99).
  3. Restart Photos app or reboot.

I've seen this fix work on HP, Dell, and Lenovo laptops running Windows 11 22H2. Without these codecs, Windows doesn't know how to decode the color profile — it sees CCIR601 and panics. The codecs add the missing decoder.

If the store is blocked on your work machine, grab the codec pack from Microsoft's Codecs FAQ — they have direct download links.

Corrupted system image codec stack from a bad update

This one is rare but nasty. A Windows Update (specifically KB5026361 on Windows 11 22H2) broke the Windows Imaging Component (WIC) for some users. The error shows 0XC00D1038 for ANY JPEG, even ones that worked before. You'll notice it happens after a reboot post-update.

Fix steps:

  1. Open Settings → Windows Update → Update history → Uninstall updates.
  2. Find KB5026361 (or the most recent quality update) and uninstall it.
  3. Reboot. Test a JPEG.
  4. If that fixes it, hide the update using the Wushowhide tool from Microsoft — don't let it reinstall automatically. Wait for Microsoft to patch the patch.

I've had three clients this month with this exact scenario. Uninstalling that update restored full JPEG support. You can also run DISM /Online /Cleanup-Image /RestoreHealth after uninstalling to repair any lingering WIC corruption.

Skip the sfc /scannow alone — it won't fix codec files. Use DISM first.

Quick-reference summary

CauseSymptomEasiest Fix
Corrupted JPEG metadata with CCIR601Only one or a few JPEGs failUse exiftool or IrfanView to strip metadata
Missing HEIF/HEVC codecsMultiple JPEGs fail on Windows 10/11Install HEIF and HEVC extensions from Microsoft Store
Bad Windows Update (KB5026361 on 22H2)All JPEGs fail after an updateUninstall update KB5026361, hide it with wushowhide

That's it. Try the metadata fix first — it covers 80% of cases. If not, move to codecs, then the update. No need to nuke your whole system.

Related Errors in Windows Errors
0X000020E4 Fix ERROR_DS_CANT_FIND_EXPECTED_NC (0X000020E4) fast 0XC026231D 0xC026231D Fix: Frequency Range Not in Set 0XC00D0041 NS_E_INCOMPATIBLE_FORMAT (0XC00D0041) – Quick Fix for Windows Media Center 0XC0020036 Fix EPT_NT_NOT_REGISTERED (0XC0020036) Endpoint Mapper Error

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.