Mar
10
Domino Memories
Toolbar Functions, I can still picture when I would use each of these functions. This code saved me many times. I even created a screen cast of the features, wow! Does anyone still use this?
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 | <?php $originalPath ='/dojo/chadsmiley/Themes/soria/'; $path ='/dojo/chadsmiley/Themes/Hue30/'; $dir_handle = @opendir($originalPath); //running the while loop while ($file = readdir($dir_handle)){ if($file!="." && $file!=".."){ $img = new Imagick(); $img->readImage($originalPath.$file); /** *@var brightness 100 = no change *@var saturation 100 = no change *@var hue (percentage of absolute rotation from the current position) */ $img->modulateImage(100, 100, 30); $img->writeImage($path.$file); $img->clear(); $img->destroy(); } } //closing the directory closedir($dir_handle); ?> |