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

@vitaliez/react-native-image-editor-sdk

v1.0.17

Published

Advanced image editing SDK for iOS with GPU acceleration, supporting filters, adjustments, layers, and drawing tools

Readme

React Native Image Editor SDK

Advanced image editing SDK for iOS with GPU acceleration, supporting filters, adjustments, layers, and drawing tools.

🎉 New in v1.2: Built-in Native UI!

Now with two ways to use the SDK:

  1. 🎨 Built-in UI Mode (New!) - Complete native editing interface with zero custom UI code
  2. 🛠️ API Mode - Full imperative API for custom UI implementations

Choose the best approach for your needs!

Features

✨ Core Capabilities

  • GPU Accelerated - Metal & Core Image powered processing
  • Non-destructive Editing - Full undo/redo with state management
  • Layer System - Multiple layers with blend modes and opacity
  • Real-time Preview - Instant visual feedback
  • Native UI (v1.2+) - Complete editing interface built-in

🎨 Editing Tools

  • Adjustments - Brightness, contrast, saturation, exposure, highlights, shadows, temperature, tint, sharpness, noise reduction, vignette
  • Filters - Instagram-style presets, custom filter chains, LUT (.cube) support
  • Transformations - Crop, rotate, flip, perspective correction, resize
  • Drawing - Free drawing with brush tools, eraser, shapes
  • Text & Stickers - Text layers with customization, PNG/SVG sticker support

📦 Export Options

  • JPEG / PNG / HEIC formats
  • Custom quality settings
  • Multi-resolution export (thumbnails, previews, full)
  • EXIF preservation
  • Async export with progress

Installation

npm install react-native-image-editor-sdk
# or
yarn add react-native-image-editor-sdk

For Expo projects

npx expo install react-native-image-editor-sdk
npx expo prebuild --clean
npx expo run:ios

Usage

Option 1: Built-in UI (Fastest - v1.2+)

import { ImageEditorUI, ImageEditorUIPresets } from 'react-native-image-editor-sdk';

function MyEditor() {
  return (
    <ImageEditorUI
      source={{ uri: 'file:///path/to/image.jpg' }}
      config={ImageEditorUIPresets.professional()}
      onExport={(result) => console.log('Saved:', result.uri)}
      style={{ flex: 1 }}
    />
  );
}

That's it! Complete image editor with all tools in 9 lines of code.

👉 UI Quick Start Guide

Option 2: Custom UI with API (Full Control)

import { ImageEditorView, ImageEditorModule } from 'react-native-image-editor-sdk';

// Using the native view component
function MyEditor() {
  return (
    <ImageEditorView
      source={{ uri: 'file://path/to/image.jpg' }}
      style={{ flex: 1 }}
      onReady={() => console.log('Editor ready')}
      onChange={(event) => console.log('Image changed', event.nativeEvent)}
    />
  );
}

// Using the module API
async function applyFilter() {
  await ImageEditorModule.loadImage('file://path/to/image.jpg');
  await ImageEditorModule.applyFilter('vintage', { intensity: 0.8 });
  const result = await ImageEditorModule.export({ format: 'jpeg', quality: 0.9 });
  console.log('Exported to:', result.uri);
}

📚 Documentation

🎯 Choose Your Approach

| Approach | Best For | Setup Time | Flexibility | |----------|----------|------------|-------------| | Built-in UI | Standard editing, MVP, quick prototyping | Minutes | Config-based | | Custom UI (API) | Unique workflows, custom UX | Hours | Unlimited |

Requirements

  • iOS 15.0+
  • Expo SDK 50+ or React Native 0.73+
  • Swift 5.9+

What's New

v1.2.0 (December 2025)

  • Built-in Native UI - Complete editing interface with zero custom code
  • 🎛️ Configurable Features - Enable/disable tools via props
  • 🎁 Presets - Ready-made configs (minimal, photoEditor, socialMedia, professional)
  • 📱 Native Performance - 100% Swift UI, no WebView

v1.1.0 (December 2025)

  • 🎨 LUT Support - Color grading with .cube files
  • 🧠 Memory Monitoring - Adaptive performance for large images
  • 📦 HEIC Export - Modern format support
  • 🖼️ Multi-Resolution Export - Thumbnails, previews, full resolution

License

MIT