libvips not linked to LibRaw 0.22.0 - Canon R5 Mark II CR3 still broken #8422

Closed
opened 2026-02-05 13:44:03 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @erichevers on GitHub (Feb 3, 2026).

Originally assigned to: @mertalev on GitHub.

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

Summary

Despite LibRaw 0.22.0 being installed in the base-images (PR #304), libvips is not linked to libraw, meaning RAW file processing still fails for Canon R5 Mark II CR3 files. The pink/magenta color cast issue persists.

Environment

  • Immich version: v2.5.2
  • Image created: 2026-01-29T20:54:39 (after PR #304 merge on Jan 26)
  • Camera: Canon EOS R5 Mark II
  • File format: CR3 (C-RAW)

Evidence

LibRaw 0.22.0 IS installed correctly

$ docker exec immich_server cat /usr/local/lib/pkgconfig/libraw.pc
Name: libraw
Description: Raw image decoder library (non-thread-safe)
Requires: lcms2
Version: 0.22.0-Devel202502
Libs: -L${libdir} -lraw -lstdc++ -fopenmp

But libvips is NOT linked to libraw

$ docker exec immich_server sh -c "ldd /usr/local/lib/libvips.so.42 | grep -i raw"
# (empty output - no libraw dependency)

Full libvips dependencies show no libraw:

$ docker exec immich_server sh -c "ldd /usr/local/lib/libvips.so.42"
linux-vdso.so.1
libglib-2.0.so.0
libgio-2.0.so.0
libgobject-2.0.so.0
libgmodule-2.0.so.0
libexpat.so.1
libz.so.1
libexif.so.12
libjpeg.so.62
libspng.so.0
libwebp.so.7
...
# libraw is MISSING from this list

Symptoms

  • Canon R5 Mark II CR3 files display with pink/magenta color overlay
  • Thumbnails and full-size previews both affected
  • "Prefer embedded preview" setting (enabled or disabled) has no effect
  • Regenerating thumbnails does not fix the issue
  • Server logs show VipsJpeg decode errors when attempting to extract embedded previews:
ERROR [Microservices] Unable to run job handler (AssetGenerateThumbnails): 
Error: VipsJpeg: ./lib/jpegli/decode_scan.cc:539: Failed to decode DCT block

Root Cause

PR #304 added LibRaw 0.22.0 to the base-images, but libvips was not recompiled/rebuilt to link against libraw.

For libvips to use LibRaw for RAW processing, it must be compiled with --with-libraw or detect libraw during its ./configure step. Currently, libvips in the container cannot access LibRaw at all.

Expected Fix

Rebuild libvips AFTER installing LibRaw 0.22.0, ensuring libvips is configured to use libraw. The build order should be:

  1. Install LibRaw 0.22.0
  2. Rebuild libvips with libraw support (./configure should detect it, or use --with-libraw)
  3. Verify with ldd /usr/local/lib/libvips.so.42 | grep raw showing libraw.so
  • immich-app/immich#15457 - Canon R5 MKII CR3 images not rendering properly (marked as fixed by PR #304, but not actually fixed)
  • immich-app/immich#25229 - Canon CR3 (C-RAW) Thumbnail Generation Failure
  • LibRaw/LibRaw#667 - Add support for Canon R5 Mark II and R1

The OS that Immich Server is running on

Rocky linux 10

Version of Immich Server

v2.5.2

Version of Immich Mobile App

n.a.

Platform with the issue

  • Server
  • Web
  • Mobile

Device make and model

No response

Your docker-compose.yml content

#
# WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose
#
# Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: >-
        pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: >-
      postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
#UPLOAD_LOCATION=./library
UPLOAD_LOCATION=/mnt/cephfs/library

# The location where your database files are stored. Network shares are not supported for the database
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# TZ=Etc/UTC
TZ=Europe/Amsterdam

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
# DB_PASSWORD=MzBhMzI1Yj
DB_PASSWORD=****Removed****

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

  1. upload a CR3 file
  2. see that the colors are not correct

...

Relevant log output


Additional information

No response

Originally created by @erichevers on GitHub (Feb 3, 2026). Originally assigned to: @mertalev on GitHub. ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug ## Summary Despite LibRaw 0.22.0 being installed in the base-images (PR #304), libvips is **not linked to libraw**, meaning RAW file processing still fails for Canon R5 Mark II CR3 files. The pink/magenta color cast issue persists. ## Environment - **Immich version**: v2.5.2 - **Image created**: 2026-01-29T20:54:39 (after PR #304 merge on Jan 26) - **Camera**: Canon EOS R5 Mark II - **File format**: CR3 (C-RAW) ## Evidence ### LibRaw 0.22.0 IS installed correctly ```bash $ docker exec immich_server cat /usr/local/lib/pkgconfig/libraw.pc ``` ``` Name: libraw Description: Raw image decoder library (non-thread-safe) Requires: lcms2 Version: 0.22.0-Devel202502 Libs: -L${libdir} -lraw -lstdc++ -fopenmp ``` ### But libvips is NOT linked to libraw ```bash $ docker exec immich_server sh -c "ldd /usr/local/lib/libvips.so.42 | grep -i raw" # (empty output - no libraw dependency) ``` Full libvips dependencies show no libraw: ```bash $ docker exec immich_server sh -c "ldd /usr/local/lib/libvips.so.42" linux-vdso.so.1 libglib-2.0.so.0 libgio-2.0.so.0 libgobject-2.0.so.0 libgmodule-2.0.so.0 libexpat.so.1 libz.so.1 libexif.so.12 libjpeg.so.62 libspng.so.0 libwebp.so.7 ... # libraw is MISSING from this list ``` ## Symptoms - Canon R5 Mark II CR3 files display with pink/magenta color overlay - Thumbnails and full-size previews both affected - "Prefer embedded preview" setting (enabled or disabled) has no effect - Regenerating thumbnails does not fix the issue - Server logs show VipsJpeg decode errors when attempting to extract embedded previews: ``` ERROR [Microservices] Unable to run job handler (AssetGenerateThumbnails): Error: VipsJpeg: ./lib/jpegli/decode_scan.cc:539: Failed to decode DCT block ``` ## Root Cause PR #304 added LibRaw 0.22.0 to the base-images, but **libvips was not recompiled/rebuilt to link against libraw**. For libvips to use LibRaw for RAW processing, it must be compiled with `--with-libraw` or detect libraw during its `./configure` step. Currently, libvips in the container cannot access LibRaw at all. ## Expected Fix Rebuild libvips AFTER installing LibRaw 0.22.0, ensuring libvips is configured to use libraw. The build order should be: 1. Install LibRaw 0.22.0 2. Rebuild libvips with libraw support (`./configure` should detect it, or use `--with-libraw`) 3. Verify with `ldd /usr/local/lib/libvips.so.42 | grep raw` showing `libraw.so` ## Related Issues - immich-app/immich#15457 - Canon R5 MKII CR3 images not rendering properly (marked as fixed by PR #304, but not actually fixed) - immich-app/immich#25229 - Canon CR3 (C-RAW) Thumbnail Generation Failure - LibRaw/LibRaw#667 - Add support for Canon R5 Mark II and R1 ### The OS that Immich Server is running on Rocky linux 10 ### Version of Immich Server v2.5.2 ### Version of Immich Mobile App n.a. ### Platform with the issue - [x] Server - [ ] Web - [ ] Mobile ### Device make and model _No response_ ### Your docker-compose.yml content ```YAML # # WARNING: To install Immich, follow our guide: https://immich.app/docs/install/docker-compose # # Make sure to use the docker-compose.yml of the current release: # # https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml # # The compose file on main may not be compatible with the latest release. name: immich services: immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - '2283:2283' depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_machine_learning # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/valkey/valkey:8-bookworm@sha256:42cba146593a5ea9a622002c1b7cba5da7be248650cbb64ecb9c6c33d29794b1 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data healthcheck: test: >- pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1; Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1 interval: 5m start_interval: 30s start_period: 5m command: >- postgres -c shared_preload_libraries=vectors.so -c 'search_path="$$user", public, vectors' -c logging_collector=on -c max_wal_size=2GB -c shared_buffers=512MB -c wal_compression=on restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables # The location where your uploaded files are stored #UPLOAD_LOCATION=./library UPLOAD_LOCATION=/mnt/cephfs/library # The location where your database files are stored. Network shares are not supported for the database DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List # TZ=Etc/UTC TZ=Europe/Amsterdam # The Immich version to use. You can pin this to a specific version like "v1.71.0" IMMICH_VERSION=release # Connection secret for postgres. You should change it to a random password # Please use only the characters `A-Za-z0-9`, without special characters or spaces # DB_PASSWORD=MzBhMzI1Yj DB_PASSWORD=****Removed**** # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. upload a CR3 file 2. see that the colors are not correct 3. ... ### Relevant log output ```shell ``` ### Additional information _No response_
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8422