Prepare or preprocess product images for Amazon or Google Shopping; that is remove logo and non-white / gray background
- PHP
- ImageMagick (convert command/tool)
php prep-product-image.php -i <source image> -o <destination image>
-v
or--version
or-h
for version and usage instruction--verbose
or--debug
for verbose output
TODO
This is a PHP wrapper script that executes convert command in each steps for:
- Replacing non-white background with white background
- Generating mask image to identify different objects in the image
- From the mask image, identify logo portion
- Fill that logo portion with white (or, erase with white color)
- Perform smart crop with ImageMagick's
-trim
- Check in ImageMagick forum with experts
- Add gray shadow removal