Capítulo 545 de 859

Chapter 545: EXRExporter

Core Idea

An exporter for EXR.

EXR ( Extended Dynamic Range) is an open format specification for professional-grade image storage format of the motion picture industry. The purpose of format is to accurately and efficiently represent high-dynamic-range scene-linear image data and associated metadata. The library is widely used in host application software where accuracy is critical, such as photorealistic rendering, texture access, image compositing, deep compositing, and DI.

Code Examples

const exporter = new EXRExporter();
const result = await exporter.parse( renderer, options );
  • What it demonstrates: Typical usage of EXRExporter.

Reference Tables

Constructor

Signature
new EXRExporter()

Methods

MethodDescription
`.parse( arg1 : DataTextureWebGPURenderer

Key Takeaways

  1. Key methods: parse.

Connects To