[TASK] Fixed a bug in the movePointer() function.

This commit is contained in:
Jan Philipp Timme
2011-01-03 15:27:03 +00:00
parent 61ea2b936e
commit b74c814e3f
3 changed files with 31 additions and 11 deletions
+3 -1
View File
@@ -1,11 +1,13 @@
<?php
error_reporting(E_ALL);
require_once "CharColorConverter.class.php";
require_once "BoxImage.class.php";
require_once "FileImageConverter.class.php";
$filename = $argv[1];
$mode = $argv[2];
$converter = new FileImageConverter();
$converter->convertFile($filename);
$converter->convertFile($filename, $mode);
?>