Skip to content
Back to Blog
How-To

How to Convert TIFF to AVIF: 5 Free Methods in 2026

Jordan Webb·April 29, 20268 min read

Why Convert TIFF to AVIF?

TIFF (Tagged Image File Format) is the gold standard for professional photography, medical imaging, document scanning, and print production. It preserves every pixel without compression artifacts — but the tradeoff is enormous file size. A single TIFF photograph from a modern full-frame camera can weigh 40 to 100 MB. For print and archival workflows, that size is justified. For web delivery, it is a serious problem.

AVIF (AV1 Image File Format) is the answer for web output in 2026. It delivers the best compression-to-quality ratio of any web image format — 50 to 65 percent smaller than WebP at equivalent visual quality, and 90 to 97 percent smaller than an equivalent TIFF. A 60 MB TIFF photograph can become 0.5 to 2 MB as AVIF while looking identical on screen. If you need to convert TIFF to AVIF, you are making the single best compression upgrade available for web delivery.

Here is why professionals convert TIFF to AVIF in 2026:

  • Maximum web compression: AVIF outperforms every competing web format — JPG, PNG, WebP — in file size at equivalent quality. For web delivery, it is the highest-efficiency option available.
  • 12-bit HDR color depth: AVIF supports up to 12-bit color with wide color gamut (Display P3, Rec. 2020). Professional TIFF workflows frequently use high bit-depth images; AVIF is the only major web format that can represent this fidelity at delivery.
  • Core Web Vitals impact: Google's LCP (Largest Contentful Paint) metric directly penalizes slow-loading images. Switching from TIFF to AVIF for web assets is one of the highest-impact page speed optimizations available in 2026.
  • Transparency support: AVIF fully preserves alpha channel transparency from TIFF files — critical for product photography, UI assets, and any TIFF with a transparent background.
  • Browser support: As of 2026, AVIF is supported by approximately 93 to 95 percent of browsers worldwide, including Chrome 85+, Firefox 93+, Safari 16.4+, and Edge 90+. Every major modern browser renders AVIF natively.
  • Privacy: Professional TIFF files often contain sensitive content — medical imaging, scanned legal documents, proprietary product photography, architectural drawings. Browser-based TIFF to AVIF conversion means your files never leave your device.
  • The key difference from TIFF to WebP conversion: AVIF delivers another 20 to 35 percent size reduction on top of WebP at equivalent quality. For 2026 web delivery targeting modern browsers, AVIF is the better compression choice. For maximum compatibility without element fallbacks, use WebP.

    For files destined for print, archival storage, or professional editing, always keep the original TIFF. For anything going to a screen — website, portfolio, web application, digital presentation — AVIF is the right delivery format in 2026.

    Method 1: Convert TIFF to AVIF in Your Browser (No Upload Required)

    The fastest and most privacy-preserving way to convert TIFF to AVIF free is PhotoFormatLab's TIFF to AVIF converter. It runs entirely in your browser using WebAssembly — your TIFF files are never sent to any server.

    Step-by-step:

  • Open photoformatlab.com/tiff-to-avif in Chrome, Firefox, Edge, or Safari
  • Drag and drop your TIFF files onto the drop zone, or click to browse your file system
  • Select multiple files for batch conversion if needed
  • Click Convert — processing runs instantly using WebAssembly on your device
  • Download individual AVIF files or click Download as ZIP for a batch
  • Why browser-based conversion is especially important for TIFF files:

    Professional TIFF files routinely contain sensitive content — scanned legal documents, medical imaging, proprietary product photography, architectural drawings, and financial records. Uploading these to server-based converters like Convertio, CloudConvert, or FreeConvert sends your files over the internet and stores them temporarily on third-party infrastructure.

    PhotoFormatLab eliminates this risk entirely:

  • 100% private: Your TIFF files are processed by WebAssembly running in your own browser tab. Zero server contact, zero upload, zero exposure to third parties.
  • No file size limits: Convert even large uncompressed TIFFs (100 MB or more) without hitting upload caps or free-tier restrictions.
  • Batch support: Drop an entire folder of TIFF files and download all AVIF results as a ZIP.
  • Transparency preserved: Alpha channel transparency from TIFF files is correctly maintained in the AVIF output.
  • No account required: No sign-up, no email, no subscription — start converting immediately.
  • Read more about why browser-based conversion matters in our guide on converting images without uploading to a server.

    Method 2: Convert TIFF to AVIF with FFmpeg

    FFmpeg is the most widely used open-source multimedia tool for image and video conversion. It supports AVIF encoding natively via the libaom-av1 codec and is available on every platform.

    Install FFmpeg:

  • macOS: brew install ffmpeg
  • Ubuntu/Debian: sudo apt install ffmpeg
  • Windows: Download from ffmpeg.org or run winget install ffmpeg
  • Convert a single TIFF to AVIF (quality-balanced settings):

    ```bash

    ffmpeg -i input.tiff -c:v libaom-av1 -crf 30 -still-picture 1 output.avif

    ```

    Higher quality — near-lossless (crf 18):

    ```bash

    ffmpeg -i input.tiff -c:v libaom-av1 -crf 18 -still-picture 1 output.avif

    ```

    Batch convert all TIFF files in a directory:

    ```bash

    for f in *.tiff; do

    ffmpeg -i "$f" -c:v libaom-av1 -crf 30 -still-picture 1 "${f%.tiff}.avif"

    done

    ```

    FFmpeg AVIF quality guide (CRF scale — lower = higher quality, larger file):

    CRFVisual qualityFile size vs TIFFBest for
    10–18Near-lossless5–12% of TIFFHero images, product photography
    18–30Excellent2–5% of TIFFBlog photos, portfolio work
    30–40Good1–3% of TIFFThumbnails, secondary images
    40–55Acceptable<2% of TIFFSocial media, low-priority images

    The -still-picture 1 flag is important — it tells FFmpeg to optimize encoding for a still image rather than a video frame, which significantly improves quality and compression efficiency for photographs.

    Note: AVIF encoding with libaom-av1 is computationally intensive. Expect encoding to take 2 to 10 seconds per image depending on your hardware and the CRF setting. For large batch jobs, run FFmpeg in the background or use a loop with progress tracking.

    Method 3: ImageMagick (Batch Conversion with CMYK Support)

    ImageMagick handles TIFF to AVIF conversion across platforms with excellent support for complex professional TIFFs — high bit-depth files, CMYK color mode, multi-layer formats, and embedded ICC profiles.

    Install ImageMagick:

  • macOS: brew install imagemagick
  • Ubuntu/Debian: sudo apt install imagemagick
  • Windows: Download from imagemagick.org (AVIF support requires libavif libraries)
  • Convert a single TIFF to AVIF:

    ```bash

    magick input.tiff -quality 85 output.avif

    ```

    Batch convert all TIFF files:

    ```bash

    for file in *.tiff; do

    magick "$file" -quality 85 "${file%.tiff}.avif"

    done

    ```

    Batch with output to a separate folder (preserves originals):

    ```bash

    mkdir -p avif-output

    for file in *.tiff; do

    magick "$file" -quality 85 avif-output/"${file%.tiff}.avif"

    done

    ```

    Handle CMYK TIFF files from print workflows:

    ```bash

    magick input-cmyk.tiff -colorspace sRGB -quality 85 output.avif

    ```

    AVIF only supports RGB and RGBA color spaces. CMYK TIFFs from print production must be converted to sRGB before AVIF encoding. ImageMagick's -colorspace sRGB flag handles this automatically. The resulting AVIF looks correct for screen display, though exact CMYK print values should always come from the original TIFF.

    ImageMagick is the best choice for non-standard professional TIFFs — 16-bit and 32-bit files, CMYK color mode, embedded color profiles, and multi-page documents — where simpler tools may fail.

    Method 4: macOS Preview (AVIF Export on Sonoma and Later)

    macOS Sonoma (14.0, released September 2023) added native AVIF read and write support to Preview and the system image stack. If you are on a recent Mac, no additional software is needed to convert TIFF to AVIF.

    Single file conversion:

  • Open the TIFF file in Preview (double-click or right-click > Open With > Preview)
  • Click File in the menu bar, then Export...
  • In the Format dropdown, select HEIF — on macOS Sonoma, HEIF output defaults to AVIF encoding
  • Adjust the quality slider if one is available
  • Click Save
  • Batch conversion with Preview:

  • Select multiple TIFF files in Finder
  • Right-click and choose Open With > Preview
  • Press ⌘A to select all images in the sidebar
  • Click File > Export Selected Images
  • Click Options, select HEIF/AVIF
  • Choose your destination folder and click Choose
  • Important: AVIF export is available in macOS Sonoma 14 and later. On macOS Ventura (13) or earlier, Preview does not reliably support AVIF output. If AVIF does not appear as a format option, use Method 1 (browser-based) or Method 2 (FFmpeg) instead.

    Method 5: Python Pillow (Automated Pipelines)

    For developers integrating TIFF to AVIF conversion into a larger workflow — a Django web app, a media processing pipeline, or an automated asset generator — Python Pillow with the pillow-avif-plugin handles this reliably.

    Install dependencies:

    ```bash

    pip install Pillow pillow-avif-plugin

    ```

    Convert a single TIFF to AVIF:

    ```python

    import pillow_avif

    from PIL import Image

    with Image.open('input.tiff') as img:

    # AVIF only supports RGB/RGBA — convert CMYK TIFFs first

    if img.mode == 'CMYK':

    img = img.convert('RGB')

    img.save('output.avif', 'AVIF', quality=85)

    ```

    Batch convert a folder:

    ```python

    import pillow_avif

    from PIL import Image

    from pathlib import Path

    input_dir = Path('./tiff-files')

    output_dir = Path('./avif-output')

    output_dir.mkdir(exist_ok=True)

    for tiff_path in input_dir.glob('*.tiff'):

    with Image.open(tiff_path) as img:

    if img.mode == 'CMYK':

    img = img.convert('RGB')

    elif img.mode == 'P':

    img = img.convert('RGBA')

    out_path = output_dir / tiff_path.with_suffix('.avif').name

    img.save(out_path, 'AVIF', quality=85)

    print(f'Converted: {tiff_path.name}')

    ```

    The CMYK conversion step is essential for professional print TIFFs. AVIF only supports RGB and RGBA color spaces — without the convert('RGB') call, Pillow raises a color space error or produces incorrect color output when handling CMYK source files.

    TIFF vs AVIF: Full Feature Comparison

    FeatureTIFFAVIF
    CompressionLossless (LZW, ZIP) or uncompressedLossy (AV1 codec)
    Typical file size (12MP photo)30–80 MB0.5–2 MB
    Transparency (alpha)YesYes
    Color depth8, 16, 32-bitUp to 12-bit (HDR capable)
    Color modeRGB, CMYK, LAB, GrayscaleRGB, RGBA only
    Multi-page supportYesYes (AVIF sequences)
    Browser supportNone (no browser renders TIFF natively)~93–95% (all major modern browsers)
    Web deliveryNot possibleYes — smallest files of any web format
    Print productionYesNo
    Editing suitabilityIdeal — fully lossless, every save is exactPoor — re-encoding adds artifacts; keep TIFF
    CDN and hosting efficiencyPoorExcellent

    Key principle: TIFF is for professional editing, archival storage, and print production. AVIF is for web delivery at maximum compression. They serve different stages of the image lifecycle — not competing uses of the same stage.

    Choosing AVIF vs WebP vs PNG vs JPG for TIFF Web Output

    When converting a TIFF for web delivery, you have four format options. Here is when each is the right choice:

    Choose AVIF (/tiff-to-avif) when:

  • Your users are on modern browsers — Chrome, Firefox, Safari, Edge all 2022 and later
  • You want the smallest possible file size at excellent visual quality
  • Page speed and Core Web Vitals scores are a priority
  • You can implement element fallbacks for the small percentage of older browsers
  • Choose WebP instead when:

  • You need broad modern-format browser compatibility without requiring fallbacks
  • Your CMS, CDN, or deployment pipeline does not yet serve AVIF
  • Encoding speed matters — WebP encodes 3 to 5 times faster than AVIF
  • Choose PNG instead when:

  • The image goes to a designer or developer who will edit it further
  • You are creating design assets for re-export to a delivery format
  • Maximum software compatibility is required — legacy design tools, print services, document workflows
  • Choose JPG instead when:

  • Maximum cross-platform compatibility is essential — email clients, legacy enterprise systems, social media uploads
  • The recipient's system cannot handle WebP or AVIF
  • Handling TIFF Color Depth and Professional Format Features

    Professional TIFF files come with technical characteristics that require attention during AVIF conversion:

    16-bit and 32-bit TIFFs: AVIF supports up to 12-bit color depth per channel. Converting a 16-bit TIFF to AVIF produces a 10 or 12-bit AVIF — visually superior to standard 8-bit JPG and imperceptible on screen in virtually all use cases. For print reproduction requiring true 16-bit precision, always keep the TIFF original.

    CMYK color mode: TIFF files from print production workflows use CMYK color space. AVIF only supports RGB and RGBA. The conversion requires a color mode mapping from CMYK to sRGB, handled automatically by ImageMagick (-colorspace sRGB) and Python Pillow (convert('RGB')). Screen colors will look correct; exact CMYK values for print should always come from the TIFF original.

    Multi-page TIFFs: Standard converters process the first page of a multi-page TIFF. To convert all pages to individual AVIF files, split the TIFF first with ImageMagick (magick input.tiff page-%d.tiff), then convert each resulting single-page TIFF to AVIF.

    TIFF with alpha channel: AVIF fully supports alpha channel transparency. All five methods covered in this guide correctly preserve alpha channel data from TIFF input files. This is critical for product images, UI element exports, and any TIFF used in compositing workflows.

    Frequently Asked Questions

    Does converting TIFF to AVIF lose image quality?

    Yes — AVIF is a lossy format, so some quality is discarded relative to the lossless TIFF original. At quality settings of 80–90 (or CRF 20–30 in FFmpeg), the difference is visually imperceptible for photographs on screen. The typical 90 to 97 percent file size reduction far outweighs the minimal quality difference for web delivery. Always keep your original TIFF for archival storage, print production, and any workflow requiring re-editing.

    How much smaller is AVIF compared to TIFF?

    A 60 MB TIFF photograph typically becomes 0.5 to 2 MB as AVIF at quality 80–85 — a 96 to 99 percent reduction. Compared to the same image as a JPG, AVIF is typically 50 percent smaller at equivalent visual quality. Compared to WebP, AVIF is 20 to 35 percent smaller. Of all web image formats in 2026, AVIF delivers the smallest files.

    Can I convert TIFF to AVIF without uploading my files?

    Yes. PhotoFormatLab's TIFF to AVIF converter runs entirely in your browser using WebAssembly. Your files never leave your device — no upload, no server, no account required. This is especially important for professional TIFF files containing medical, legal, or proprietary content. For more information, read our guide on whether online image converters are safe to use.

    What browsers support AVIF in 2026?

    AVIF is supported by Chrome 85+, Firefox 93+, Safari 16.4+, and Edge 90+, covering approximately 93 to 95 percent of global web traffic in 2026. For the remaining browsers, implement a element with a WebP or JPG fallback. See our WebP browser support guide for guidance on serving format fallbacks.

    Does converting TIFF to AVIF preserve transparency?

    Yes. AVIF fully supports alpha channel transparency. If your TIFF has an alpha layer, all five conversion methods covered in this guide will preserve it in the AVIF output. This makes AVIF an excellent choice for product images with transparent backgrounds, UI element cutouts, and any TIFF used in compositing workflows.

    Should I use AVIF or WebP when converting TIFF for web delivery?

    Choose AVIF if you are targeting modern browsers and want maximum compression — AVIF produces files 20 to 35 percent smaller than WebP at equivalent quality. Choose WebP if you need broad compatibility without element fallbacks, or if your CMS or CDN does not yet serve AVIF. Both are strong choices in 2026; AVIF is the better technical choice and WebP is the safer deployment choice for teams without AVIF infrastructure in place.

    J
    Jordan Webb·Founder, PhotoFormatLab

    Jordan builds privacy-focused web tools. He created PhotoFormatLab to make image conversion free, instant, and fully browser-based — no file uploads, no accounts, no watermarks. About PhotoFormatLab →

    Ad
    Ad