Convert HEIC to JPEG/WEBP/AVIF

View Markdown

Convert iPhone uploads to formats that work across the web.


Convert HEIC to JPEG

const task = await ittybit.tasks.create({
  kind: 'image',
  url: 'https://example.com/iphone-photo.heic',
  format: 'jpeg',
});

Convert HEIC to WEBP

const task = await ittybit.tasks.create({
  kind: 'image',
  url: 'https://example.com/iphone-photo.heic',
  format: 'webp',
});

Convert HEIC to AVIF

const task = await ittybit.tasks.create({
  kind: 'image',
  url: 'https://example.com/iphone-photo.heic',
  format: 'avif',
});

(See SDKs for install and initialization steps.)

On this page