//! Read an AVIF header without decoding its pixels using [`avif::probe`].
//!
//! Returns an [`avif::ImageInfo`] with dimensions, color type, and bit depth — useful for validation or thumbnailing
//! pipelines where you don't need the decoded image.
//!
//! Run with:
//!
//! ```text
//! cargo run --example probe
//! ```
use Error;
const SOURCE: &str = concat!;