@capgo/capacitor-file-compressor

June 25, 2026 ยท View on GitHub

Capgo - Instant updates for Capacitor

โžก๏ธ Get Instant updates for your App with Capgo

Missing a feature? We'll build the plugin for you ๐Ÿ’ช

Capacitor plugin for efficient image compression and format conversion across iOS, Android, and Web.

Why File Compressor?

A free, open-source alternative for client-side image compression:

  • Format conversion - Convert HEIF, PNG, WebP, GIF, and more to JPEG, PNG, WebP, or HEIF
  • Multiple formats - Broad input support with platform-specific output formats
  • Quality control - Adjustable compression quality (0.0 - 1.0)
  • Smart resizing - Automatic aspect ratio preservation without upscaling
  • Cross-platform - Consistent API across iOS, Android, and Web
  • Zero backend - All compression happens on the device

Essential for apps that need to optimize image uploads, reduce storage, or improve performance without server-side processing.

Documentation

The most complete doc is available here: https://capgo.app/docs/plugins/file-compressor/

Compatibility

Plugin versionCapacitor compatibilityMaintained
v8.*.*v8.*.*โœ…
v7.*.*v7.*.*On demand
v6.*.*v6.*.*โŒ
v5.*.*v5.*.*โŒ

Note: The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.

Install

You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:

npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins

Then use the following prompt:

Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-file-compressor` plugin in my project.

If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:

npm install @capgo/capacitor-file-compressor
npx cap sync

Format Conversion

The plugin accepts common image formats as input and converts them to the mimeType you request.

PlatformInput formatsOutput formats
iOSJPEG, PNG, WebP, GIF, BMP, TIFF, HEIF/HEICJPEG, PNG, HEIF/HEIC, WebP (iOS 14+)
AndroidJPEG, PNG, WebP, GIF, BMP, HEIF/HEIC (API 28+)JPEG, PNG, WebP
WebAny format the browser can decodeJPEG, PNG, WebP
import { FileCompressor } from '@capgo/capacitor-file-compressor';

// Convert an iPhone HEIF photo to JPEG before upload
const result = await FileCompressor.compressImage({
  path: heifFileUri,
  width: 1920,
  height: 1080,
  quality: 0.7,
  mimeType: 'image/jpeg',
});

Note: EXIF metadata is removed during compression on all platforms.

API

Capacitor File Compressor Plugin interface for image compression.

compressImage(...)

compressImage(options: CompressImageOptions) => Promise<CompressImageResult>

Compresses an image file with specified dimensions and quality settings.

This method compresses images to reduce file size while maintaining acceptable quality. It supports resizing and format conversion across common image formats.

Supported input formats (platform decoder dependent): JPEG, PNG, WebP, GIF, BMP, TIFF, HEIF/HEIC

Supported output formats:

  • iOS: image/jpeg, image/png, image/heif, image/heic, image/webp (iOS 14+)
  • Android: image/jpeg, image/png, image/webp
  • Web: image/jpeg, image/png, image/webp

Important Notes:

  • EXIF metadata is removed during compression on all platforms
  • Aspect ratio is automatically maintained if only one dimension is provided
  • When both width and height are provided, the image fits inside that box without upscaling
  • Compressed files are saved to temporary directories on native platforms
  • If the encoded output would be larger than the source file, quality is reduced automatically while keeping the requested output format
ParamTypeDescription
optionsCompressImageOptions- Configuration options for image compression

Returns: Promise<CompressImageResult>

Since: 7.0.0


getPluginVersion()

getPluginVersion() => Promise<{ version: string; }>

Get the native Capacitor plugin version.

Returns the version of the native plugin implementation. Useful for debugging and ensuring compatibility.

Returns: Promise<{ version: string; }>

Since: 7.0.0


Interfaces

CompressImageResult

The result of compressing an image.

Contains either a file path (native platforms) or a Blob (web platform) depending on where the compression was performed.

PropTypeDescriptionSince
pathstringThe file path of the compressed image. Platform: Android, iOS only (undefined on Web) Points to a temporary file containing the compressed image. On iOS, typically in NSTemporaryDirectory(). On Android, typically in app cache directory. Important: These files may be cleaned up by the OS. Copy to permanent storage if needed for long-term use.7.0.0
blobBlobThe blob of the compressed image. Platform: Web only (undefined on iOS/Android) A Blob object containing the compressed image data. Can be used to: - Create object URLs for preview: URL.createObjectURL(blob) - Upload to server via FormData - Save to IndexedDB or other storage - Convert to base64 with FileReader7.0.0

CompressImageOptions

Options for compressing an image.

Configure the compression behavior including quality, dimensions, and output format. Platform-specific options are available for path (native) and blob (web).

PropTypeDescriptionDefaultSince
pathstringThe file path of the image to compress. Platform: Android, iOS only (not supported on Web) Accepts various path formats: - iOS: file:// URLs or absolute paths - Android: content:// URIs, file:// URLs, or absolute paths Common input formats include JPEG, PNG, WebP, GIF, BMP, TIFF, and HEIF/HEIC.7.0.0
blobBlobThe file blob of the image to compress. Platform: Web only (not supported on iOS/Android) Use this when compressing images from file inputs, fetch responses, or any other Blob source in web applications.7.0.0
qualitynumberThe quality of the compressed image. Range: 0.0 to 1.0 - 0.0 = Maximum compression (lowest quality, smallest file) - 1.0 = Minimum compression (highest quality, largest file) - 0.6 = Default balanced compression Platform: All platforms Higher quality values result in larger files but better visual quality. The actual compression ratio depends on the image content and format. PNG output ignores quality because it is lossless.0.67.0.0
widthnumberThe width of the compressed image in pixels. Platform: All platforms If only width is specified, height is calculated automatically to maintain the original aspect ratio. If both width and height are specified, the image is scaled to fit inside that box while preserving aspect ratio. Images are never upscaled.7.0.0
heightnumberThe height of the compressed image in pixels. Platform: All platforms If only height is specified, width is calculated automatically to maintain the original aspect ratio. If both width and height are specified, the image is scaled to fit inside that box while preserving aspect ratio. Images are never upscaled.7.0.0
mimeTypestringThe MIME type of the compressed output image. Platform Support: - iOS: image/jpeg, image/png, image/heif, image/heic, image/webp (iOS 14+) - Android: image/jpeg, image/png, image/webp - Web: image/jpeg, image/png, image/webp Use this option to convert the source image to another format while compressing. Format Characteristics: - JPEG: Universal support, good for photos, no transparency - PNG: Lossless, supports transparency - WebP: Better compression, supports transparency - HEIF/HEIC: Efficient photo format on iOS"image/jpeg"7.0.0