- <?php
- $path = 'images';
- $outputPath = 'result';
- $files = array_diff( scandir($path), array('.', '..') );
- foreach( $files as $file ) {
- removeGreenBackground( $file, $path, $outputPath );
- }
- function removeGreenBackground( $file, $path, $outputPath )
- {
- $greenscreen = '#00FF00';
- $fuzz = 34370;
- $image = new Imagick( realpath( $path.'/'.$file ) );
- $image->floodFillPaintImage( '#FFFFFF', $fuzz, $greenscreen, 0, 0, false, Imagick::CHANNEL_ALPHA );
- /*header('Content-type: image/jpeg');
- echo $image;*/
- $image->setImageFormat ('jpeg');
- file_put_contents( $outputPath.'/custom_'.$file, $image );
- }
- ?>