Convert AVIFs to PNGs

Unlimited conversions. Filesizes up to 2.5GB. For free, forever.

All local

Our converter runs in your browser, so we never see your data.

Blazing fast

No uploading your files to a server—conversions start instantly.

Secure by default

Unlike other converters, your files are never uploaded to us.

What is the AVIF format?

AV1 Image File Format

AVIF (AV1 Image File Format) is a modern image file format that utilizes the AV1 video codec to provide superior compression efficiency compared to older formats like JPEG, PNG, and WebP. Developed by the Alliance for Open Media (AOMedia), AVIF aims to deliver high-quality images with smaller file sizes, making it an attractive choice for web developers and content creators looking to optimize their websites and applications.

At the core of AVIF is the AV1 video codec, which was designed as a royalty-free alternative to proprietary codecs like H.264 and HEVC. AV1 employs advanced compression techniques, such as intra-frame and inter-frame prediction, transform coding, and entropy coding, to achieve significant bitrate savings while maintaining visual quality. By leveraging AV1's intra-frame coding capabilities, AVIF can compress still images more efficiently than traditional formats.

One of the key features of AVIF is its support for both lossy and lossless compression. Lossy compression allows for higher compression ratios at the expense of some image quality, while lossless compression preserves the original image data without any loss of information. This flexibility enables developers to choose the appropriate compression mode based on their specific requirements, balancing file size and image fidelity.

AVIF also supports a wide range of color spaces and bit depths, making it suitable for various image types and use cases. It can handle both RGB and YUV color spaces, with bit depths ranging from 8 to 12 bits per channel. Additionally, AVIF supports high dynamic range (HDR) imaging, allowing for the representation of a broader range of luminance values and more vibrant colors. This capability is particularly beneficial for HDR displays and content.

Another significant advantage of AVIF is its ability to encode images with an alpha channel, enabling transparency. This feature is crucial for graphics and logos that require seamless integration with different background colors or patterns. AVIF's alpha channel support is more efficient compared to PNG, as it can compress the transparency information alongside the image data.

To create an AVIF image, the source image data is first divided into a grid of coding units, typically with a size of 64x64 pixels. Each coding unit is then further divided into smaller blocks, which are processed independently by the AV1 encoder. The encoder applies a sequence of compression techniques, such as prediction, transform coding, quantization, and entropy coding, to reduce the data size while preserving image quality.

During the prediction stage, the encoder uses intra-frame prediction to estimate the pixel values within a block based on the surrounding pixels. This process exploits spatial redundancy and helps to reduce the amount of data that needs to be encoded. Inter-frame prediction, which is used in video compression, is not applicable to still images like AVIF.

After prediction, the residual data (the difference between the predicted and actual pixel values) undergoes transform coding. The AV1 codec employs a set of discrete cosine transform (DCT) and asymmetric discrete sine transform (ADST) functions to convert the spatial domain data into the frequency domain. This step helps to concentrate the energy of the residual signal into fewer coefficients, making it more amenable to compression.

Quantization is then applied to the transformed coefficients to reduce the precision of the data. By discarding less significant information, quantization allows for higher compression ratios at the cost of some loss in image quality. The quantization parameters can be adjusted to control the trade-off between file size and image fidelity.

Finally, entropy coding techniques, such as arithmetic coding or variable-length coding, are used to compress the quantized coefficients further. These techniques assign shorter codes to more frequently occurring symbols, resulting in a more compact representation of the image data.

Once the encoding process is complete, the compressed image data is packaged into the AVIF container format, which includes metadata such as image dimensions, color space, and bit depth. The resulting AVIF file can then be stored or transmitted efficiently, taking up less storage space or bandwidth compared to other image formats.

To decode an AVIF image, the reverse process is followed. The decoder extracts the compressed image data from the AVIF container and applies entropy decoding to reconstruct the quantized coefficients. Inverse quantization and inverse transform coding are then performed to obtain the residual data. The predicted pixel values, derived from the intra-frame prediction, are added to the residual data to reconstruct the final image.

One of the challenges in adopting AVIF is its relatively recent introduction and limited browser support compared to established formats like JPEG and PNG. However, as more browsers and image processing tools begin to support AVIF natively, its adoption is expected to grow, driven by the increasing demand for efficient image compression.

To address compatibility issues, websites and applications can employ fallback mechanisms, serving AVIF images to compatible clients while providing alternative formats like JPEG or WebP for older browsers. This approach ensures that users can access the content regardless of their browser's support for AVIF.

In conclusion, AVIF is a promising image file format that leverages the power of the AV1 video codec to deliver superior compression efficiency. With its support for lossy and lossless compression, a wide range of color spaces and bit depths, HDR imaging, and alpha channel transparency, AVIF offers a versatile solution for optimizing images on the web. As browser support continues to expand and more tools embrace AVIF, it has the potential to become a preferred choice for developers and content creators seeking to reduce image file sizes without compromising visual quality.

What is the PNG format?

Portable Network Graphics

PNG, which stands for Portable Network Graphics, is a raster graphics file format that supports lossless data compression. Developed as an improved, non-patented replacement for Graphics Interchange Format (GIF), PNG was designed to transfer images on the Internet, not only for professional-quality graphics but also for photographs and other types of digital images. One of the most notable features of PNG is its support for transparency in browser-based applications, making it a crucial format in web design and development.

The inception of PNG can be traced back to 1995, following the patent issues surrounding the compression technique used in GIF format. A call for the creation of a new graphic format was made on the comp.graphics newsgroup, leading to the development of PNG. The main objectives for this new format were to improve upon and overcome the limitations of GIF. Among its goals were to support images with more than 256 colors, include an alpha channel for transparency, provide options for interlacing, and ensure the format was patent-free and suitable for open-source development.

PNG files excel in the quality of image preservation, supporting a range of color depths, from 1-bit black and white to 16-bit per channel for red, green, and blue (RGB). This wide range of color support makes PNG suitable for storing line drawings, text, and iconic graphics at a small file size. Additionally, PNG's support for an alpha channel allows for varying degrees of transparency, enabling intricate effects like shadows, glows, and semi-transparent objects to be rendered with precision in digital images.

One of the standout features of PNG is its lossless compression algorithm, defined using the DEFLATE method. This algorithm is designed to reduce the file size without sacrificing any image quality. The efficiency of the compression varies depending on the type of data being compressed; it is particularly effective for images with large areas of uniform color or repeated patterns. Despite the lossless nature of the compression, it's important to note that PNG might not always result in the smallest possible file size compared to formats like JPEG, especially for complex photographs.

The structure of a PNG file is based on chunks, where each chunk represents a certain kind of data or metadata about the image. There are four main types of chunks in a PNG file: IHDR (Image Header), which contains basic information about the image; PLTE (Palette), which lists all the colors used in indexed color images; IDAT (Image Data), which contains the actual image data compressed with the DEFLATE algorithm; and IEND (Image Trailer), which marks the end of the PNG file. Additional ancillary chunks can provide more details about the image, such as text annotations and gamma values.

PNG also incorporates several features aimed at improving the display and transfer of images over the internet. Interlacing, particularly using the Adam7 algorithm, allows an image to be loaded progressively, which can be especially useful when viewing images over slower internet connections. This technique displays a low-quality version of the entire image first, which gradually increases in quality as more data is downloaded. This feature not only enhances user experience but also provides a practical advantage for web usage.

Transparency in PNG files is handled in a more sophisticated manner compared to GIF. Whereas GIF supports simple binary transparency — a pixel is either fully transparent or fully opaque — PNG introduces the concept of alpha transparency. This allows pixels to have varying levels of transparency, from fully opaque to fully transparent, enabling smoother blending and transitions between the image and the background. This feature is particularly important for web designers who need to overlay images on backgrounds of varying colors and patterns.

Despite its many advantages, PNG does have some limitations. For instance, it is not the best choice for storing digital photographs in terms of file size efficiency. While PNG's lossless compression ensures no loss of quality, it can result in larger file sizes compared to lossy formats like JPEG, which are specifically designed for compressing photographs. This makes PNG less suitable for applications where bandwidth or storage capacity is limited. Additionally, PNG does not natively support animated images, a feature that formats like GIF and WebP offer.

Optimization techniques can be applied to PNG files to reduce their file size for web use without compromising image quality. Tools such as PNGCRUSH and OptiPNG employ various strategies, including choosing the most efficient compression parameters and reducing the color depth to the most appropriate level for the image. These tools can significantly reduce the size of PNG files, making them more efficient for web use, where loading times and bandwidth usage are critical concerns.

Furthermore, the inclusion of gamma correction information within PNG files ensures that images are displayed more consistently across different devices. Gamma correction helps adjust the brightness levels of an image according to the display device's characteristics. This feature is particularly valuable in the context of web graphics, where images may be viewed on a wide variety of devices with differing display properties.

The legal status of PNG has contributed to its wide acceptance and adoption. Being free of patents, PNG avoids the legal complexities and licensing fees associated with some other image formats. This has made it particularly attractive for open-source projects and applications where cost and legal freedom are important considerations. The format is supported by a broad range of software, including web browsers, image editing programs, and operating systems, facilitating its integration into various digital workflows.

Accessibility and compatibility are also key strengths of the PNG format. With its support for colors ranging from monochrome to truecolor with alpha transparency, PNG files can be used in a wide variety of applications, from simple web graphics to high-quality print materials. Its interoperability across different platforms and software ensures that images saved in PNG format can be easily shared and viewed without concern for compatibility issues.

Technical advancements and community contributions continue to enhance the PNG format. Innovations such as APNG (Animated Portable Network Graphics) introduce support for animation while maintaining backward compatibility with standard PNG viewers. This evolution reflects the format's adaptability and the active community's efforts to expand its capabilities in response to user needs. Such developments ensure the ongoing relevance of PNG in a rapidly evolving digital landscape.

In conclusion, the PNG image format has become a staple in digital image sharing and storage, striking a balance between quality preservation and file size efficiency. Its ability to support high color depths, alpha transparency, and lossless compression make it a versatile choice for a wide range of applications, from web design to archival storage. While it may not be the optimal choice for every situation, its strengths in quality, compatibility, and legal freedom make it an invaluable asset in the world of digital imaging.

Supported formats

AAI.aai

AAI Dune image

AI.ai

Adobe Illustrator CS2

AVIF.avif

AV1 Image File Format

AVS.avs

AVS X image

BAYER.bayer

Raw Bayer Image

BMP.bmp

Microsoft Windows bitmap image

CIN.cin

Cineon Image File

CLIP.clip

Image Clip Mask

CMYK.cmyk

Raw cyan, magenta, yellow, and black samples

CMYKA.cmyka

Raw cyan, magenta, yellow, black, and alpha samples

CUR.cur

Microsoft icon

DCX.dcx

ZSoft IBM PC multi-page Paintbrush

DDS.dds

Microsoft DirectDraw Surface

DPX.dpx

SMTPE 268M-2003 (DPX 2.0) image

DXT1.dxt1

Microsoft DirectDraw Surface

EPDF.epdf

Encapsulated Portable Document Format

EPI.epi

Adobe Encapsulated PostScript Interchange format

EPS.eps

Adobe Encapsulated PostScript

EPSF.epsf

Adobe Encapsulated PostScript

EPSI.epsi

Adobe Encapsulated PostScript Interchange format

EPT.ept

Encapsulated PostScript with TIFF preview

EPT2.ept2

Encapsulated PostScript Level II with TIFF preview

EXR.exr

High dynamic-range (HDR) image

FARBFELD.ff

Farbfeld

FF.ff

Farbfeld

FITS.fits

Flexible Image Transport System

GIF.gif

CompuServe graphics interchange format

GIF87.gif87

CompuServe graphics interchange format (version 87a)

GROUP4.group4

Raw CCITT Group4

HDR.hdr

High Dynamic Range image

HRZ.hrz

Slow Scan TeleVision

ICO.ico

Microsoft icon

ICON.icon

Microsoft icon

IPL.ipl

IP2 Location Image

J2C.j2c

JPEG-2000 codestream

J2K.j2k

JPEG-2000 codestream

JNG.jng

JPEG Network Graphics

JP2.jp2

JPEG-2000 File Format Syntax

JPC.jpc

JPEG-2000 codestream

JPE.jpe

Joint Photographic Experts Group JFIF format

JPEG.jpeg

Joint Photographic Experts Group JFIF format

JPG.jpg

Joint Photographic Experts Group JFIF format

JPM.jpm

JPEG-2000 File Format Syntax

JPS.jps

Joint Photographic Experts Group JPS format

JPT.jpt

JPEG-2000 File Format Syntax

JXL.jxl

JPEG XL image

MAP.map

Multi-resolution Seamless Image Database (MrSID)

MAT.mat

MATLAB level 5 image format

PAL.pal

Palm pixmap

PALM.palm

Palm pixmap

PAM.pam

Common 2-dimensional bitmap format

PBM.pbm

Portable bitmap format (black and white)

PCD.pcd

Photo CD

PCDS.pcds

Photo CD

PCT.pct

Apple Macintosh QuickDraw/PICT

PCX.pcx

ZSoft IBM PC Paintbrush

PDB.pdb

Palm Database ImageViewer Format

PDF.pdf

Portable Document Format

PDFA.pdfa

Portable Document Archive Format

PFM.pfm

Portable float format

PGM.pgm

Portable graymap format (gray scale)

PGX.pgx

JPEG 2000 uncompressed format

PICON.picon

Personal Icon

PICT.pict

Apple Macintosh QuickDraw/PICT

PJPEG.pjpeg

Joint Photographic Experts Group JFIF format

PNG.png

Portable Network Graphics

PNG00.png00

PNG inheriting bit-depth, color-type from original image

PNG24.png24

Opaque or binary transparent 24-bit RGB (zlib 1.2.11)

PNG32.png32

Opaque or binary transparent 32-bit RGBA

PNG48.png48

Opaque or binary transparent 48-bit RGB

PNG64.png64

Opaque or binary transparent 64-bit RGBA

PNG8.png8

Opaque or binary transparent 8-bit indexed

PNM.pnm

Portable anymap

PPM.ppm

Portable pixmap format (color)

PS.ps

Adobe PostScript file

PSB.psb

Adobe Large Document Format

PSD.psd

Adobe Photoshop bitmap

RGB.rgb

Raw red, green, and blue samples

RGBA.rgba

Raw red, green, blue, and alpha samples

RGBO.rgbo

Raw red, green, blue, and opacity samples

SIX.six

DEC SIXEL Graphics Format

SUN.sun

Sun Rasterfile

SVG.svg

Scalable Vector Graphics

SVGZ.svgz

Compressed Scalable Vector Graphics

TIFF.tiff

Tagged Image File Format

VDA.vda

Truevision Targa image

VIPS.vips

VIPS image

WBMP.wbmp

Wireless Bitmap (level 0) image

WEBP.webp

WebP Image Format

YUV.yuv

CCIR 601 4:1:1 or 4:2:2

Frequently asked questions

How does this work?

This converter runs entirely in your browser. When you select a file, it is read into memory and converted to the selected format. You can then download the converted file.

How long does it take to convert a file?

Conversions start instantly, and most files are converted in under a second. Larger files may take longer.

What happens to my files?

Your files are never uploaded to our servers. They are converted in your browser, and the converted file is then downloaded. We never see your files.

What file types can I convert?

We support converting between all image formats, including JPEG, PNG, GIF, WebP, SVG, BMP, TIFF, and more.

How much does this cost?

This converter is completely free, and will always be free. Because it runs in your browser, we don't have to pay for servers, so we don't need to charge you.

Can I convert multiple files at once?

Yes! You can convert as many files as you want at once. Just select multiple files when you add them.