Programmatically remove backgrounds from your images using the remove.bg api.
Install via composer:
composer require mtownsend/remove-bg
This package is designed to work with any PHP 7.0+ application but has special support for Laravel.
For Laravel 5.4 and lower, add the following line to your config/app.php
:
/*
* Package Service Providers...
*/
Mtownsend\RemoveBg\Providers\RemoveBgServiceProvider::class,
For Laravel 5.5 and greater, the package will auto register the provider for you.
To register the service provider, add the following line to app/bootstrap/app.php
:
$app->register(Mtownsend\RemoveBg\Providers\RemoveBgServiceProvider::class,);
php artisan vendor:publish --provider="Mtownsend\RemoveBg\Providers\RemoveBgServiceProvider"
Once your removebg.php
has been published your to your config folder, add the api key you obtained from Remove.bg. If you are using Laravel and put your remove.bg api key in the config file, Laravel will automatically set your api key every time you instantiate the class through the helper or facade.
use Mtownsend\RemoveBg\RemoveBg;
$absoluteUrl = 'https://yoursite.com/images/photo.jpg';
$pathToFile = 'images/avatar.jpg';
$base64EncodedFile = base64_encode(file_get_contents($pathToFile));
$removebg = new RemoveBg($apiKey);
// Directly saving files
$removebg->url($absoluteUrl)->save('path/to/your/file.png');
$removebg->file($pathToFile)->save('path/to/your/file2.png');
$removebg->base64($base64EncodedFile)->save('path/to/your/file3.png');
// Getting the file's raw contents to save or do something else with
$rawUrl = $removebg->url($absoluteUrl)->get();
$rawFile = $removebg->file($pathToFile)->get();
$rawBase64 = $removebg->base64($base64EncodedFile)->get();
file_put_contents('path/to/your/file4.png', $rawUrl);
// etc...
// Getting the file's base64 encoded contents from the api
$base64Url = $removebg->url($absoluteUrl)->getBase64();
$base64File = $removebg->file($pathToFile)->getBase64();
$base64Base64 = $removebg->base64($base64EncodedFile)->getBase64();
file_put_contents('path/to/your/file5.png', base64_decode($base64Url));
// etc...
// Please note: remove.bg returns all images in .png format, so you should be saving all files received from the api as .png.
If you are using Laravel, this package provides a convenient helper function which is globally accessible.
removebg()->url($absoluteUrl)->save('path/to/your/file.png');
If you are using Laravel, this package provides a facade. To register the facade add the following line to your config/app.php
under the aliases
key.
'RemoveBg' => Mtownsend\RemoveBg\Facades\RemoveBg::class,
use RemoveBg;
RemoveBg::file($pathToFile)->save('path/to/your/file.png');
- Mark Townsend
- All Contributors
Tests coming soon...
You can run the tests with:
./vendor/bin/phpunit
The MIT License (MIT). Please see License File for more information.