Graphics
|
|
|
|
<?php //GIF2PNG $ConvertFromDir = ''; //Directory where files that have to be coverted is placed! $ConvertToDir = ''; //Directory where the converted files have to be placed!
$fp = popen('/bin/sh', 'w');
if($dir = @opendir($ConvertFromDir)) {
while(($file = readdir($dir))!==false) {
fputs($fp, '/usr/bin/convert '.$ConvertFromDir.$file.' '.$ConvertToDir.substr($file, 0, -3).'png'."n");
}
closedir($dir);
} pclose($fp); ?>
|
|
|
Usage Example
|
|
|
Rate This Script
|
|
|
|