An open API service indexing awesome lists of open source software.

https://github.com/logue/dropwebp

Compress image files to WebP, Avif and JPEG XL by drag and drop using tauri, vuetify.
https://github.com/logue/dropwebp

avif-decoder avif-encoder image-compression jpeg-2000 jpeg-xl-decoder jpegli oxipng png-encoder tauri2 vue-i18n vuetify3 webp-encoder zopflipng

Last synced: 4 days ago
JSON representation

Compress image files to WebP, Avif and JPEG XL by drag and drop using tauri, vuetify.

Awesome Lists containing this project

README

          

![logo](./backend/icons/Square284x284Logo.png)

# ๐Ÿš€ Drop Compress Image: The Modern Image Converter

Drop Compress Image is a powerful, fast, and versatile GUI tool for converting your images into next-generation formats. Built with performance in mind, it leverages modern codecs to bring you the best in speed, quality, and file size. Say goodbye to outdated formats and hello to the future of web images!

This project was created to provide a comprehensive conversion solution, supporting a wide range of input formats and exporting to highly efficient formats like **AVIF**, **JPEG XL**, and **WebP**.

## โœจ Features

**Wide Format Support**: Convert from dozens of classic and modern image formats.

**Next-Gen Output**: Export images to AVIF, JPEG XL (also JPEG transcode), and WebP (both lossy and lossless) for superior compression and quality.

**High Performance**: Built with Rust for speed and reliability you can count on.

**International Ready**: Fully localized interface available in multiple languages.

## ๐Ÿ”€ Supported Formats

ImageForge handles a vast array of file types for both input and output.

### Input Formats

We support a huge range of input formats, including:

- AV1 Image Format (`*.avif`)
- Microsoft Windows Bitmap Image (`*.bmp`)
- Direct Draw Surface (`*.dds`)
- Farbfeld (`*.ff`)
- Graphics Interchange Format (`*.gif`)
- Radiance High Dynamic Range image file (`*.hdr`)
- Computer icon encoded in ICO file format (`*.ico`)
- Joint Photographic Experts Group (`*.jpg`, `*.jpeg`)
- OpenEXR image (`*.exr`)
- Portable Network Graphic (`*.png`)
- Portable Any Map (`*.pnm`)
- Quite OK Image Format (`*.qoi`)
- Truevision Graphics Adapter (`*.tga`)
- Tagged Image File Format (`*.tif`, `*.tiff`)
- WebP (`*.webp`)
- JPEG 2000 (`*.jp2`, `*.j2c`, `*.j2k`, `*.jpf`, `*.jpx`, `*.jpm`, `*.mj2`, `*.jph`)
- JPEG XL (`*.jxl`)

> **Note about HEIC/HEIF files**: HEIC/HEIF format is not supported due to licensing constraints (LGPL-3.0).
> If you need to convert HEIC files, please use macOS Preview app (File โ†’ Export โ†’ JPEG) or other tools first.
> Modern iPhones now capture photos in JPEG XL format, which is fully supported.

...and all other formats supported by the excellent [Rust image crate](https://docs.rs/image/latest/image/codecs/index.html).

### Output Formats

Optimize your images by converting them to these modern, highly efficient formats:

- **AVIF** (`.avif`)
- **JPEG XL** (`.jxl`) - **_JPEG transcode_** supported.
- **WebP** (`.webp`) - **_Lossy & Lossless_** supported (libwebp v1.6.0)
- **PNG** (`.png`) - Implemented with Oxipng. Zopfli compression.
- **JPEG** (`.jpg`) - Implemented with jpegli.

## ๐Ÿ“ฆ Installation

### Package Managers

#### Windows (Chocolatey)

```powershell
choco install drop-compress-image
```

#### macOS (Homebrew)

```bash
brew tap logue/tap
brew install drop-compress-image
```

### Manual Installation

Download the latest release from the [Releases page](https://github.com/logue/DropWebP/releases):

- **Windows**: `.msi` installer
- **macOS**: `.dmg` disk image (Apple Silicon)
- **Linux**: `.deb` or `.AppImage`

## ๐Ÿ› ๏ธ Building from Source

### Quick Start

#### Windows

```powershell
# Install vcpkg and dependencies first
git clone https://github.com/Microsoft/vcpkg.git C:\vcpkg
cd C:\vcpkg
.\bootstrap-vcpkg.bat

# Set environment variable
$env:VCPKG_ROOT = "C:\vcpkg"

# Install dependencies (see docs/content/ja/windows-build-vcpkg.md for details)
cd path\to\DropWebP\app\src-tauri
.\setup-vcpkg.ps1

# Build the application
cd ..
pnpm install
pnpm run build:tauri
```

For detailed Windows build instructions including vcpkg setup, see [Windows Build Guide](./docs/content/ja/windows-build-vcpkg.md).

**Build Issues?** See [WINDOWS_BUILD_FIX.md](WINDOWS_BUILD_FIX.md) for troubleshooting.

#### macOS / Linux

```bash
cd app
pnpm install
pnpm run build:tauri
```

#### Cross-platform Linux Build using Docker

Build Linux packages from Windows or macOS using Docker:

```bash
# For Windows (PowerShell)
pnpm run build:tauri:linux-x64 # Build x86_64 .deb and .rpm
pnpm run build:tauri:linux-arm64 # Build ARM64 .deb and .rpm

# For macOS/Linux (Bash)
bash scripts/docker/docker-build.sh x64 # Build x86_64
bash scripts/docker/docker-build.sh arm64 # Build ARM64
```

**Requirements**: Docker Desktop with Linux container support

For detailed build instructions, see the [Development Documentation](./docs/content/ja/).

## ๐Ÿ“‚ Project Structure

```
DropWebP/
โ”œโ”€โ”€ app/ # Main Tauri application
โ”‚ โ”œโ”€โ”€ src/ # Vue.js frontend (TypeScript + Vuetify)
โ”‚ โ””โ”€โ”€ src-tauri/ # Rust backend (image processing)
โ”œโ”€โ”€ docs/ # Documentation site (Nuxt 3)
โ”‚ โ””โ”€โ”€ content/ # Multi-language documentation
โ”‚ โ”œโ”€โ”€ ja/ # Japanese (ๆ—ฅๆœฌ่ชž)
โ”‚ โ”œโ”€โ”€ en/ # English
โ”‚ โ”œโ”€โ”€ fr/ # French (Franรงais)
โ”‚ โ”œโ”€โ”€ ko/ # Korean (ํ•œ๊ตญ์–ด)
โ”‚ โ”œโ”€โ”€ zhHans/ # Simplified Chinese (็ฎ€ไฝ“ไธญๆ–‡)
โ”‚ โ””โ”€โ”€ zhHant/ # Traditional Chinese (็น้ซ”ไธญๆ–‡)
โ”œโ”€โ”€ docker/ # Dockerfiles for cross-platform builds
โ”œโ”€โ”€ scripts/ # Build and deployment scripts
โ”‚ โ”œโ”€โ”€ build/ # Native build scripts
โ”‚ โ””โ”€โ”€ docker/ # Docker build scripts
โ””โ”€โ”€ .github/ # GitHub Actions workflows
```

## ๐ŸŒ Localization

The user interface is available in the following languages:

- ๐Ÿ‡ฌ๐Ÿ‡ง **English**
- ๐Ÿ‡ซ๐Ÿ‡ท **French**
- ๐Ÿ‡ฏ๐Ÿ‡ต **Japanese** (ๆ—ฅๆœฌ่ชž)
- ๐Ÿ‡ฐ๐Ÿ‡ท **Korean** (ํ•œ๊ตญ์–ด)
- ๐Ÿ‡จ๐Ÿ‡ณ **Chinese** (ไธญๆ–‡)

## License

ยฉ2023, 2025-2026 by Logue. Licensed under the [MIT License](LICENSE).