Skip to main content

Worker

From-v3.0

Loader for compressed textures in the Crunch file format

LoaderCharacteristic
File FormatCRN
File Extension.crn
File TypeBinary
Data FormatArray of compressed image data objects
Supported APIsload, parse

Usage​

import {CrunchWorkerLoader} from '@loaders.gl/textures';
import {load} from '@loaders.gl/core';

const mipLevels = await load(url, CrunchWorkerLoader);
for (const image of mipLevels) {
...
}

Data Format​

Returns an array of image data objects representing mip levels.

{compressed: true, format, width, height, data: ..., levelSize}

Options​

OptionTypeDefaultDescription
N/A