-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.php
38 lines (29 loc) · 972 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
removeapi
1=picwish
2=photoroom
3=imagga
4=clipdrop
5=slazzer
6=clippingmagic
7=removebg
*/
$removeapi=1;
define('Imgurl', 'https://youdomain.com/img/');
// Define constant variables for API keys
// read https://picwish.com/background-removal-api
define('PICWISH_API_KEY', 'your_picwish_api_key');
// read https://www.photoroom.com/api/remove-background
define('PHOTOROOM_API_KEY', 'your_photoroom_api_key');
// read https://docs.imagga.com/
define('IMAGGA_API_KEY', 'your_imagga_api_key');
define('IMAGGA_API_secret', 'your_imagga_api_secret');
// read https://clipdrop.co/apis
define('CLIPDROP_API_KEY', 'your_clipdrop_api_key');
// read https://www.slazzer.com/api
define('SLAZZER_API_KEY', 'your_slazzer_api_key');
// read https://clippingmagic.com/api
define('CLIPPINGMAGIC_API_KEY', 'your_clippingmagic_api_key');
// read https://www.remove.bg/api
define('REMOVEBG_API_KEY', 'your_removebg_api_key');