AVIFify

EPS

.eps

A 1992 PostScript-based vector format built for print exchange between applications. PDF and SVG have largely replaced it for new projects.

rawlossless

EPS is a pre-web vector format for print, built on Adobe's PostScript language and now largely replaced by PDF and SVG. It predates AVIF by three decades and serves the opposite job: AVIF compresses photographs for screens, while EPS carries scalable line art to imagesetters. This page explains where EPS came from, what is inside the file, why it never belonged on the web, and the two-track conversion route — vector to SVG, photographic raster to AVIF.

Where EPS came from

EPS is a single-file PostScript program with a bounding box and an optional preview, defined by Adobe in the late 1980s.

PostScript shipped in 1984 as Adobe's page-description language and powered Apple's 1985 LaserWriter. EPS layered three constraints on top so one drawing could be dropped into another document:

  • A %%BoundingBox comment declares the artwork's exact extent in points.
  • The PostScript body restricts itself to a self-contained, printable graphic.
  • An optional preview lets layout apps show the art without a PostScript interpreter.

The final published specification is EPS version 3.0 from 1992 — Adobe never revised it again, which is itself a signal of the format's frozen, legacy status.

What lives inside an EPS file

An .eps file is text-based PostScript code plus an optional low-resolution preview, not pixels.

The preview is a small embedded raster (TIFF on Windows, PICT on classic Mac) used only for on-screen placement. Two consequences follow:

  • The vector body stays resolution-independent — it prints crisp at any size.
  • The preview is throwaway — it is coarse and never represents print quality.

This split is the opposite of a photographic format. A JPEG or PNG is all pixels; an EPS is mostly a drawing program with a thumbnail attached.

Why EPS is obsolete for the web

Browsers do not render EPS, so an .eps URL triggers a download instead of displaying an image.

EPS predates the web entirely and assumes a PostScript print pipeline that browsers never adopted. Two formats absorbed its roles:

  • PDF took over print interchange — it does everything EPS does, plus multi-page, modern fonts, and a maintained ISO standard.
  • SVG took over web vector — it is declarative XML that browsers render natively and CSS can style.

Security accelerated the decline: Microsoft disabled EPS in Office in May 2018 because embedded PostScript could execute. The format is now mostly inertia — stock-art downloads and legacy print shops.

EPS vs AVIF: different jobs, no overlap

EPS and AVIF never compete — one stores vector line art, the other compresses photographs.

TraitEPSAVIF
Data modelVector (PostScript)Raster (AV1 intra-frame)
Built for1980s print2019 web delivery
Scales without lossYesNo
Renders in browsersNoYes (~94% of users)

The rule is content-driven, not format-driven: vector goes to SVG, photographic raster goes to AVIF. A logo from an EPS becomes SVG; a scanned print proof inside an EPS becomes AVIF. See AVIF vs PNG for how raster formats compare once you are on that track.

How to take EPS content to the web

Pick the destination by content type, because EPS holds vector art that may also embed rasterised photos.

Vector artwork to SVG

For logos, icons, and illustrations, convert EPS to SVG to keep infinite scalability. Open the EPS in Inkscape, Adobe Illustrator, or Affinity Designer and export SVG, then minify the result. Convert text to outlines first if the original fonts are unavailable, or letters will be substituted.

Photographic content to AVIF

For scans, gradients, or any photographic layer baked into the EPS, rasterise to AVIF for the smallest high-fidelity file. Export a high-resolution PNG or JPG from your editor, then convert it in your browser with no upload: Convert PNG to AVIF or Convert JPG to AVIF. Already have AVIF you need to repurpose? Use Convert AVIF to JPG or Convert AVIF to PNG.

Rasterising discards scalability permanently, so reserve it for genuinely photographic content and keep vector art as SVG. The AVIF optimization guide covers quality and effort settings, and Image SEO best practices covers alt text and dimensions for whatever you ship.

Frequently asked questions

Is EPS a raster or vector format?

EPS is primarily a vector format — it stores PostScript drawing code, with only a small optional raster preview.

Can a browser open an EPS file?

No. No major browser renders EPS; the link downloads the file. Convert to SVG for vector or AVIF for raster.

Should I convert EPS to AVIF?

Only for photographic content. Vector EPS art should become SVG, because AVIF is raster and loses scalability.

Why is EPS still around?

Stock libraries and legacy print shops still distribute and accept it. EPS persists by inertia, not technical advantage.

What replaced EPS?

PDF replaced it for print, SVG for the web — both are maintained standards that EPS's frozen 1992 spec cannot match.

Sources and further reading