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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-photo-compressor

v0.5.0

Published

React Native Turbo Modules that allow you to compress your photos by given URI

Downloads

5

Readme

react-native-photo-compressor

React Native Turbo Modules that allow you to compress your photos by given URI and quality parameter

Installation

npm install react-native-photo-compressor

or

yarn add react-native-photo-compressor

Android

Android configuration requires to enable the New Architecture:

  1. Open the android/gradle.properties file
  2. Scroll down to the end of the file and switch the newArchEnabled property from false to true.

iOS

bundle install
cd ios
RCT_NEW_ARCH_ENABLED=1 bundle exec pod install

Usage

import { compressPhoto, compressPhotos, getSizeInBytes, deletePhoto } from 'react-native-photo-compressor';

// ...

const compressedPhoto = await compressPhoto('file://some/photo.png', 50);
const remoteCompressedPhoto = await compressPhoto('http://remote/photo.png', 50);
const namedCompressedPhoto = await compressPhoto('file://some/photo.png', 50, 'myFileName', true);
const compressedPhotos = await compressPhotos(['file://some/photo_1.png', 'file://some/photo_2.png'], 50);

const photoSize = await getSizeInBytes('file://some/photo.png');
await deletePhoto('file://some/photo.png');

API

compressPhoto(uri: string, quality: number, fileName?: string, forceRewrite?: boolean): Promise<string>

Creates a compressed copy of the image at the given uri inside a /RNPhotoCompressorImages directory. Also supports images from web url. In this case uri should start with "http".

| Argument | Info | |---------------|-------------------------------------------------------------------------------------------------------------------------------| | uri | string, path to the photo, must contain file:// prefix | | quality | number, value from 0 to 100 (smaller number -> more compression) | | fileName? | string, optional name of the compressed photo | | forceRewrite? | boolean, optional flag to force the file to be overwritten if a file with the given name already exists. Default: false |

compressPhotos(photos: string[], quality: number, onProgress?: (progress: number) => void): Promise<string[]>

Creates a compressed copy of the images by uri from a given photos array inside a /RNPhotoCompressorImages directory. Also supports images from web url. In this case uri should start with "http".

| Argument | Info | |-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | photos | string[], paths to the photo, must contain file:// prefix | | quality | number, value from 0 to 100 (smaller number -> more compression) | | rejectAll? | boolean, optional flag indicating whether to reject all if compression of one image fails, otherwise rejected images will return null. Default: true | | onProgress? | (progress: number) => void, optional callback that triggers when the image in the array has completed compression. progress returns the index of elements that have completed compression. |

getSizeInBytes(uri: string, size?: SizeType): Promise<number>

Returns the size of the file in bytes at the given uri. SizeType defines the format of the return value and can be either "kb" or "mb"(default: "b").

deletePhoto(uri: string): Promise<void>;

Deletes a compressed image at a given uri. Note: Only works for files inside a /RNPhotoCompressorImages directory.

Troubleshooting

If you get this error when building iOS:

/Users/user/Desktop/testApp/ios/Pods/../../node_modules/react-native/scripts/codegen/generate-legacy-interop-components.js: Permission denied
  1. Open a terminal, run this command and copy the result
command -v node
  1. Open .xcode.env file in ios directory and replace
export NODE_BINARY=$(command -v node)

to

export NODE_BINARY=~/your/node/path

Work in progress

  • [x] Implement turbo module for Android
  • [x] Implement turbo module for iOS
  • [x] Add more configuration for turbo module (like deleting photos, specific urls and etc.)
  • [ ] Refactor Android turbo module

Contributing

If you want to add more functionality to this:

  1. Fork repo
  2. Implement wanted feature
  3. Create a PR into master

Or

  1. Create an issue
  2. Describe the feature you want
  3. Tag author

License

MIT


Made with create-react-native-library