@capgo/capacitor-file-compressor

January 31, 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 supporting PNG, JPEG, and WebP formats across iOS, Android, and Web platforms.

Why File Compressor?

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

  • Multiple formats - JPEG and WebP compression support
  • Quality control - Adjustable compression quality (0.0 - 1.0)
  • Smart resizing - Automatic aspect ratio preservation
  • 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

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

Platform Support

PlatformSupported FormatsNotes
iOSJPEGOnly JPEG compression supported
AndroidJPEG, WebPBoth formats fully supported
WebJPEG, WebPCanvas API-based compression

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 (JPEG/WebP depending on platform).

Important Notes:

  • EXIF metadata is removed during compression on all platforms
  • Aspect ratio is automatically maintained if only one dimension is provided
  • Compressed files are saved to temporary directories on native platforms
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 paths7.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.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 resized to exact dimensions (may distort if ratio differs).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 resized to exact dimensions (may distort if ratio differs).7.0.0
mimeTypestringThe MIME type of the compressed output image. Platform Support: - iOS: image/jpeg only - Android: image/jpeg, image/webp - Web: image/jpeg, image/webp Format Characteristics: - JPEG: Universal support, good for photos, no transparency - WebP: Better compression, supports transparency, not on iOS"image/jpeg"7.0.0