# Quick Start Guide

Convert your images to WebP format using our API or web interface.

## Using the Web Interface

1. Upload your images using drag and drop

2. Adjust quality settings if needed

3. Click "Convert" and download your WebP images

## Using the API

```bash

# Install via npm

npm install @imagewebp/converter

# Or using yarn

yarn add @imagewebp/converter

```

Basic usage:

```javascript

import { convertToWebP } from '@imagewebp/converter';

// Convert a single image

const result = await convertToWebP(imageFile, {

quality: 90

});

```