backgroundremover icon indicating copy to clipboard operation
backgroundremover copied to clipboard

Can it be filled with other colors, such as blue, red

Open 2424004764 opened this issue 2 years ago • 1 comments

After deleting the background, the default color is white, can it be filled with other colors, such as red

2424004764 avatar May 17 '23 01:05 2424004764

convert is good for add background image. its from ImageMagick. code like

$cmd = "convert $file_1 -background '".$color."'  -flatten $file_2";

if your are useing PHP or just command line

convert input_file  -background 'blue|red|..'  -flatten output_file

sunkangchina avatar Jun 16 '23 03:06 sunkangchina