Convert Archives to Any Format

Convert archives free online. Change ZIP, RAR, 7Z, TAR, GZ, BZ2, ISO formats. Extract, repack, instant results, no registration, secure server-side.

Convert Archives to Any Format

15+ archive formats including ZIP, RAR, 7Z, TAR, GZ, BZ2, XZ, and ISO

Drop your archives here

or click to browse files

Supports all archive formats • Multiple files • no fixed limit (practical limits depend on the tool, file size and device)
15+ Formats Supported
Fast Quick Conversion
Secure Private & Safe

How much each archive format actually saves

We packed the same two folders into every format this tool offers and measured the results. The headline is that what you are archiving matters far more than which format you choose.

Tested on two payloads: 2.3 MB of source code, logs and CSV data, and 3.9 MB of photographs and audio. Packed with 7-Zip 26.02.

FormatAlgorithmText folderSavedPhoto folderSpeedNotes
7ZLZMA20.3 MB86.3%15.3%FastSmallest result, open format
XZLZMA20.3 MB86.7%15.3%FastTies 7Z, standard on Linux
BZ2Burrows-Wheeler0.4 MB83.5%15%SlowerBetween gzip and LZMA2
GZDEFLATE0.4 MB81.9%14%SlowerUniversally supported tarball
ZIP-9DEFLATE level 90.4 MB81.4%14%MediumOpens everywhere, no extra software
ZIPDEFLATE level 60.4 MB80.8%13.6%MediumWhat this tool produces in your browser
TARNone2.4 MB-1.1%-0.3%InstantA container only, it does not compress
  • On text and code the gains are large. XZ and 7Z both cut the 2.3 MB folder to 0.3 MB, saving about 86.3%, while ZIP saved 80.8%. Logs, source code and spreadsheets are full of repetition that compressors exploit.
  • On photographs and audio almost nothing is left to gain. The same formats saved only 13.6% to 15.3%, because JPEG and MP3 files are already compressed. Zipping a folder of photos will not make it meaningfully smaller.
  • TAR on its own saves nothing at all, -1.1% in our test. It is a container that joins files together, which is why you almost always see it paired with gzip, bzip2 or xz as .tar.gz, .tar.bz2 or .tar.xz.
  • The gap between formats is smaller than the gap between file types. Choosing 7Z over ZIP gained about 5.5 percentage points on text, whereas switching from text to photos changed the outcome by more than sixty.

What runs in your browser

ZIP and TAR are built directly in your browser, so those files never leave your device. The other formats are processed on our servers because browsers cannot unpack them natively.

Measured on two representative folders with 7-Zip at maximum settings. Your own results depend heavily on what is inside the archive. Files that are already compressed will barely shrink in any format.

Supported Archive Formats

Convert between all major archive and compression formats

Common Archives

ZIP

The universal archive format, supported everywhere.

Best for sharing with anyone on any system.

Compresses well and opens without extra software.

RAR

A proprietary format from RARLAB with strong compression.

Best for opening archives someone sent you.

Creating RAR needs licensed software; convert to ZIP or 7Z.

7Z

The open 7-Zip format, using LZMA2 compression.

Best when you want the smallest possible archive.

Beat ZIP by a clear margin on text in our test.

Unix/Linux Archives

TAR

A Unix container that bundles files without compressing them.

Best as a wrapper before applying gzip, bzip2 or xz.

On its own it saves nothing; it only joins files together.

TGZ

A TAR archive compressed with gzip.

Best for Unix and Linux distribution of source code.

The most common compressed tarball you will meet.

TBZ2

A TAR archive compressed with bzip2.

Best when you want more compression than gzip.

Slower than gzip, smaller output.

Specialized Formats

ISO

A complete disc image, sector for sector.

Best for archiving CDs, DVDs and bootable media.

A container rather than a compressor.

CAB

Microsoft's cabinet format, used by Windows installers.

Best for opening Windows setup and driver packages.

Convert to ZIP for everyday sharing.

AR

The classic Unix archive format.

Best for static libraries and Debian package internals.

Rarely used directly these days.

DEB

A Debian and Ubuntu software package.

Best for inspecting what an installer contains.

An ar archive holding compressed tarballs.

RPM

A Red Hat, Fedora and SUSE software package.

Best for inspecting package contents.

Convert to extract the files inside.

JAR

A Java archive, structurally a ZIP file.

Best for Java libraries and applications.

Any ZIP tool can open it.

ARJ

A DOS-era archive format from the early 1990s.

Best for recovering files from old backups.

Largely historical; convert it forward.

LHA

A Japanese archive format popular in the 1990s.

Best for old Amiga and DOS archives.

Convert to ZIP or 7Z to keep the contents usable.

CPIO

A Unix archive used by system tools and initramfs images.

Best for Linux boot images and RPM internals.

A container format like TAR.

BZ2

Burrows-Wheeler compression for a single file.

Best paired with TAR as a .tar.bz2 tarball.

Smaller than gzip but slower to pack.

GZ

The gzip format, compressing one file at a time.

Best paired with TAR, or for web content.

Fast and universally supported.

XZ

LZMA2 compression for a single file.

Best where the smallest size matters most.

Excellent ratio, higher memory use.

LZMA

The original LZMA compression format.

Best for legacy archives that predate XZ.

XZ superseded it and is the better target.

LZO

A compressor built for speed over ratio.

Best where decompression speed matters most.

Saves less than gzip but runs very fast.

TXZ

A TAR archive compressed with xz.

Best for the smallest tarballs, used by many Linux distros.

Matched 7Z for the best ratio in our test.

Z

The original Unix compress format.

Best for very old Unix archives.

Obsolete; convert to gzip or xz.

References

  1. APPNOTE.TXT: .ZIP File Format Specification - PKWARE
  2. RFC 1951: DEFLATE Compressed Data Format Specification version 1.3 - RFC Editor
  3. RFC 1952: GZIP file format specification version 4.3 - RFC Editor
  4. 7z Format - 7-Zip
  5. The .xz File Format - Tukaani Project
  6. pax, including the tar archive format - POSIX.1-2017, The Open Group
  7. bzip2 Manual - Sourceware
  8. Compression Streams API - MDN Web Docs, Mozilla