AnonymiseVFCommand::actionRedactTif PHP Метод

actionRedactTif() публичный Метод

Take images from the in-directory, anonymise them and place the resulting file in the sepcified out-directory.
public actionRedactTif ( type $inDir, type $outDir )
$inDir type
$outDir type
    public function actionRedactTif($inDir, $outDir)
    {
        if ($entries = glob($inDir . '/*.tif')) {
            foreach ($entries as $entry) {
                $this->anonymiseTif($inDir . '/' . basename($entry), $outDir);
            }
        }
    }