background_remover 0.0.3 
background_remover: ^0.0.3 copied to clipboard
Flutter package that remove background of a selfie
Background Remover #
| Before | After | 
|---|---|
![]()  | 
![]()  | 
Overview #
The background_remover package is the first Flutter plugin designed for easy integration of background removal functionality into Flutter applications. This package provides a straightforward way to pick images from the gallery and process them to remove their background.
Features #
- Image picking from gallery
 - Background removal from images
 - Display of images with and without background
 
Getting Started #
To use the background_remover package, follow these steps:
Installation #
Add background_remover to your pubspec.yaml file:
dependencies:
  flutter:
    sdk: flutter
  background_remover: ^1.0.0
Import the Package #
Import the package along with other required packages in your Dart file:
import 'package:background_remover/background_remover.dart';
Usage #
Here is a basic example of how to use the background_remover package in a Flutter application:
Uint8List imageBytes = your image as byte;
removeBackground(imageBytes: imageBytes).then((Uint8List backgroundRemoveBytes) {
// then do whatever you want with byte of images such as display it in image.memory()..
});
removeBackground() is the method that handles the background removal process.
Contributing #
Contributions to the background_remover package are welcome. Please feel free to fork the repository, make changes, and create a pull request to upgrade it.
License #
This package is licensed under the MIT License.
This README provides a basic introduction to the background_remover package. It assumes the reader has a fundamental understanding of Flutter and Dart.

