Skip to content

Free tools · Images

AVIF to JPG

The newest web format, back into the one everything accepts.

Free · no sign-up · no watermark · up to 40 MB · uploads deleted after 24 hours, results after 7 days.

How to avif to jpg

  1. Drop the AVIF.
  2. Pick a quality.
  3. Press Convert and download the JPG.

What happens to your file

AVIF decoding is not something every browser exposes to pages yet, so the file is converted on Fylane’s servers and deleted on schedule.

AVIF can hold high-dynamic-range and 10-bit colour; JPG keeps the standard 8-bit picture, which is what every editor and form expects.

Questions

Why do I keep getting AVIF files from websites?

Sites serve AVIF because it is the smallest format browsers display. Saving the image keeps that format; most other software cannot open it yet.

Do this in code

curl -X POST https://api.fylane.dev/v1/jobs \
  -H "Authorization: Bearer $FYLANE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "file_id": "<file id>",
    "operation": "image.convert",
    "options": {
      "format": "jpeg",
      "quality": 82
    }
  }'

The same operation, image.convert — Re-encode to WebP, JPEG, PNG or AVIF at your quality. Upload first with the quickstart; every option is on the operations page. 500 free credits a month, then $5 per thousand.