File: TIFFLoader.md | Updated: 11/15/2025
A loader for the TIFF texture format.
const loader = new TIFFLoader();
const texture = await loader.loadAsync( 'textures/tiff/crate_lzw.tif' );
texture.colorSpace = THREE.SRGBColorSpace;
TIFFLoader is an addon, and must be imported explicitly, see Installation#Addons.
import { TIFFLoader } from 'three/addons/loaders/TIFFLoader.js';
Constructs a new TIFF loader.
manager | The loading manager.
---|---
Parses the given TIFF texture data.
buffer | The raw texture data.
---|---
Overrides: DataTextureLoader#parse
Returns: An object representing the parsed texture data.