Maximum Resolution of a Single AVIF Image

This article examines the maximum pixel resolution supported by a single AVIF (AV1 Image File Format) image item, covering both the absolute theoretical limits defined by the AV1 bitstream syntax and the practical limits enforced by AVIF compliance profiles. Readers will learn the precise dimensions possible for individual frames and how format constraints impact standard decoding.

The Absolute Bitstream Limit

At the specification level, a single AVIF image item consists of a single coded AV1 sequence frame. The AV1 bitstream architecture stores frame dimensions using 16-bit unsigned integers represented by max_frame_width_minus_1 and max_frame_height_minus_1.

Because a 16-bit integer ranges from 0 to 65,535, the maximum absolute pixel resolution supported by a single AV1 image item is:

Any single image item exceeding 65,536 pixels in either dimension cannot be represented within a standard AV1 frame header.

Limits Enforced by AVIF Compliance Profiles

While the syntax allows up to 65,536 × 65,536 pixels, AVIF defines compliance profiles to ensure hardware decoders can reliably open images. Standard decoders enforce operating level limits on single image items:

Single Items vs. Grid Collections

A single AVIF image item cannot exceed the 65,536 × 65,536 structural boundary, and standard profiles limit it further to 4K or 8K. To display ultra-high-resolution images that exceed profile constraints without breaking hardware decoders, AVIF uses an image grid (grid item type). An image grid splits a massive image into multiple smaller, compliant AV1 image items and tiles them back together, allowing multi-gigapixel canvases while keeping each individual image item within standard decoder limits.