local_rembg 1.0.0 copy "local_rembg: ^1.0.0" to clipboard
local_rembg: ^1.0.0 copied to clipboard

A Flutter plugin for offline background removal in images, ideal for enhancing photo editing capabilities within mobile apps.

Local Background Remover (Android/IOS) #

Overview #

The Background Removal Library is a powerful tool designed to seamlessly remove backgrounds from images in both Android and iOS platforms.This library provides developers with an easy-to-use interface to integrate background removal functionality into their mobile applications, enhancing user experience and enabling a wide range of creative possibilities.

System requirements #

  • iOS: 15
  • Android: 4.4 (SDK 19)

Features #

  • Offline Support: Remove backgrounds without internet for quick performance offline.
  • Object and Person Detection: Easily remove backgrounds from both objects and people.
  • Cross-Platform: Delete backgrounds on Android and iOS.

Getting started #

Add the plugin package to the pubspec.yaml file in your project: If you only require person detection on iOS,consider using version 0.0.8 to reduce your app's size.

dependencies:
  local_rembg: ^1.0.0

Install the new dependency:

flutter pub get

Call the removeBackground function in your code:

Future<LocalRembgResultModel> removeBackground() async {
  LocalRembgResultModel localRembgResultModel = await LocalRembg.removeBackground(
     imagePath: // Your Image Path,
     cropTheImage: // Crop the segmented image (Default true)
  );
  return localRembgResultModel;
}

Example #

Explore our Example Project to see how the Local Rembg SDK can be used in a Flutter application.

License Terms #

This library is provided under the Apache License.

14
likes
140
pub points
75%
popularity

Publisher

unverified uploader

A Flutter plugin for offline background removal in images, ideal for enhancing photo editing capabilities within mobile apps.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on local_rembg