npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@capgo/capacitor-file-compressor

v8.0.16

Published

Capacitor plugin for efficient image compression supporting PNG, JPEG, and WebP formats across iOS, Android, and Web platforms

Readme

@capgo/capacitor-file-compressor

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 version | Capacitor compatibility | Maintained | | -------------- | ----------------------- | ---------- | | 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

| Platform | Supported Formats | Notes | |----------|-------------------|-------| | iOS | JPEG | Only JPEG compression supported | | Android | JPEG, WebP | Both formats fully supported | | Web | JPEG, WebP | Canvas 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

| Param | Type | Description | | ------------- | --------------------------------------------------------------------- | --------------------------------------------- | | options | CompressImageOptions | - 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.

| Prop | Type | Description | Since | | ---------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | | path | string | The 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 | | blob | Blob | The 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 FileReader | 7.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).

| Prop | Type | Description | Default | Since | | -------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- | ----- | | path | string | The 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 | | 7.0.0 | | blob | Blob | The 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 | | quality | number | The 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.6 | 7.0.0 | | width | number | The 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 | | height | number | The 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 | | mimeType | string | The 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 |