Polotno

File converter

AI to JPG converter

Convert Adobe Illustrator files to JPG in your browser. Export at any resolution from live vector data, and edit the artwork before you flatten it.

Quick answer

Drop an .ai file, get a JPG. The artwork opens as editable objects first, so you can fix it and choose the export size before anything is flattened.

Formula: AI (PDF container) → Polotno JSON (per artboard) → JPG (any resolution, browser-only)

Drop a AI file here to convert it to JPG

or

Runs entirely in your browser. Your file never leaves your device.

JPG is the right choice for photographic Illustrator artwork and the wrong one for a logo. Most converters do not tell you which you have — they upload the file, flatten it, and return a picture. This one opens the artwork first, so you can see what you are exporting.

Why an .ai file opens here without Illustrator

Since Illustrator 9, every .aifile has stored a complete PDF representation of the artwork alongside Illustrator's own data, under the default “Create PDF Compatible File” option. That is why a genuine .ai file begins with the bytes %PDF-1.5. The same parser this site uses for PDFs reads it directly.

Resolution comes from vectors, not from upscaling

Rasterisation happens at export time, from live vector data. Set a bigger canvas before you export and the artwork is drawn again at that size, so lines and type stay crisp. A converter that flattens on upload cannot offer this: once the vectors are gone, enlarging the result only interpolates pixels.

Where JPG costs you quality

JPEG compression works by discarding detail the eye is unlikely to miss in a photograph. Hard edges are exactly what it handles worst, so a crisp black logo on white picks up faint grey speckle around every edge. It also has no alpha channel, so transparency becomes a solid fill.

For logos, icons, and type-led artwork, use the AI to PNG converter for a lossless raster, or the AI to SVG converter to stay vector entirely.

Fix the artwork before you flatten it

Once the file parses, every object is still separate and editable. Correct the wording, swap a colour, remove a stray element, or delete an artboard you do not need — then export. The JPG is rendered from what is on screen, which is the one thing a plain converter can never do.

The same conversion in code

This page is built on the public SDK. Because .ai is a PDF container, the importer needs no special case:

ai-to-jpg.ts
import { pdfToJson } from "@polotno/pdf-import";
import { createStore } from "polotno/model/store";

// An .ai file is a PDF container - pass the bytes straight in.
const buffer = await file.arrayBuffer();
const json = await pdfToJson({ pdf: buffer });

const store = createStore({ key: "YOUR_KEY" });
store.loadJSON(json);
await store.waitLoading();

// 2x the artboard size, rendered from vector data
const dataUrl = await store.toDataURL({
  pageId: store.pages[0].id,
  mimeType: "image/jpeg",
  pixelRatio: 2,
});

Full API reference: PDF Import and the Import & Export overview.

Frequently asked questions

Q: How do I convert an AI file to JPG?

Drop your .ai file on the converter above. It opens in your browser as an editable design — no Illustrator and no account needed. Click "Download JPG" to save the image. Each artboard in the file becomes a page you can switch between before exporting.

Q: Should I pick JPG or PNG?

Pick JPG when the artwork is photographic or heavily shaded: the file is far smaller and the compression is hard to see. Pick PNG for logos, icons, flat illustration, and anything with sharp type, because JPG compression leaves visible fringing around hard edges. JPG also cannot store transparency — it always fills the background with a solid colour.

Q: Can I get a JPG with a transparent background?

No, and no tool can. The JPEG format has no alpha channel, so a transparent area is always filled with a solid colour, normally white. If you need transparency, use the AI to PNG converter instead — it is the same tool with a different export.

Q: How do I get a high-resolution JPG?

The export defaults to the artboard's own size, but the source is vector, so you are not limited to it. Increase the canvas size in the editor before exporting and the image is re-rendered from vector data at the larger size. This produces genuine detail, unlike upscaling a finished bitmap, which only adds blur.

Q: Why does my .ai file fail to open?

Almost certainly because it was saved without "Create PDF Compatible File". Illustrator ticks that option by default, but with it off the artwork exists only in Illustrator's private format, which no other tool can read. Re-save the file with the option ticked. The converter tells you when this is the problem.

Q: Is my file uploaded to a server?

No. Parsing, editing, and rendering all run inside your browser tab, so the artwork never leaves your machine. That matters because .ai files are usually client work, brand assets, or licensed stock artwork.

Open Illustrator and PDF artwork inside your own app with @polotno/pdf-import.

TRUSTED BY

100,000+

CREATORS

300+

BUSINESSES

ExpediaUnbounceLovePopPostGridPredis.ai