7.0.0 • Published 10 months ago

@capacitor-community/image-manipulator v7.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Table of Contents

Maintainers

MaintainerGitHubActive
ryaaryaayes

About

This capcitor plugin allows reading image dimensions (width and height) and resize images. This plugin is inspired and similar to cordova-plugin-image-resizer plugin. Please note that it does not depend on cordova-plugin-camera plugin and can be used independently.

Features:

  • supports getting image dimensions
  • supports resizing image
  • supports Android and iOS platforms

NOTE: The plugin version 7.0.0 is compatible with Capacitor 7

Plugin versions

Capacitor versionPlugin version
7.x7.x
6.x6.x

Supported Platforms

  • iOS
  • Android

Install

npm install @capacitor-community/image-manipulator
npx cap sync

API

getDimensions(...)

getDimensions(options: GetDimensionsOptions) => Promise<{ width: number; height: number; }>

Get dimensions of an image (width and height)

ParamTypeDescription
optionsGetDimensionsOptionsoptions to get dimensions of an image

Returns: Promise<{ width: number; height: number; }>

Since: 6.0.0


resize(...)

resize(options: ResizeOptions) => Promise<{ originalWidth: number; originalHeight: number; resizedWidth: number; resizedHeight: number; imagePath: string; webPath: string; resized: boolean; }>

Method to resize an image based on the provided options and return the resized image details. Please note that the resized image will respect the aspect ratio of the original image and will be resized to be equal to less of the provided maxWidth or maxHeight. If the image both width and height are less than the provided maxWidth and maxHeight, the image will not be resized and the original image details will be returned with resized as false. If either maxWidth or maxHeight is not provided or 0, this parameter will be ignored (not used) and the image will be resized based on the provided maxWidth or maxHeight, accordingly. Please note that either maxWidth or maxHeight must be provided to resize an image.

ParamTypeDescription
optionsResizeOptionsOptions to resize an image

Returns: Promise<{ originalWidth: number; originalHeight: number; resizedWidth: number; resizedHeight: number; imagePath: string; webPath: string; resized: boolean; }>

Since: 6.0.0


Interfaces

GetDimensionsOptions

PropTypeDescriptionSince
imagePathstringThe path to the image to get its dimensions.6.0.0

ResizeOptions

PropTypeDescriptionSince
imagePathstringThe path to the image to resize.6.0.0
folderNamestring(Android Only) The name of the folder to store the resized images (optional, defaults to 'ResizedImages' if not provided).6.0.0
fileNamestringThe name of the resized file without extension (optional, timestamp as name if not provided).6.0.0
qualitynumberThe resized image quality from 0 to 100, where 100 is max (optional, defaults to 85 if not provided).6.0.0
maxWidthnumberThe max width of the resized image (optional, but at least either height or width must be provided).6.0.0
maxHeightnumberThe max height of the resized image (optional, but at least either width or height must be provided).6.0.0
fixRotationbooleanFix the rotation of the image based on EXIF metadata (optional, defaults to false if not provided).6.0.0

Usage

Please also see example-app for a complete example.

Resize image

import { ImageManipulator } from '@capacitor-community/image-manipulator';

const options: ImageResizeOptions = {
  imagePath: 'path/to/image.jpg',
  maxWidth: 300,
  maxHeight: 300,
  quality: 85,
  folderName: 'ResizedImages',
  fileName: 'resized',
  fixRotation: true
};
const result = await ImageManipulator.resize(options);

Resize image

import { ImageManipulator } from '@capacitor-community/image-manipulator';

const options: GetDimensionsOptions = {
  imagePath: 'path/to/image.jpg'
};
const result = await ImageManipulator.getDimensions(options);
7.0.0

10 months ago

6.0.0

10 months ago