Пример #1
0
 private static void drawExcel(Excel excel,Image image)
 {
     for(int x = 0;x < image.Width(); x++)
     {
         for(int y = 0;y < image.Height(); y++)
         {
             excel.draw(x, y, image.getColor(x, y));
         }
     }
 }
Пример #2
0
 static void Main(string[] args)
 {
     if(args.Length == 0)
     {
         Console.Error.WriteLine("Invalid argument.");
         usage();
         return;
     }
     if (!System.IO.File.Exists(args[0]))
     {
         Console.Error.WriteLine("Image file not found {0}",args[0]);
         usage();
         return;
     }
     try {
         Excel excel = new Excel();
         Image image = new Image(args[0]);
         drawExcel(excel, image);
     }catch(Exception e){
         Console.Error.WriteLine("Error!\n{0}\n{1}", e.Message, e.StackTrace);
     }
 }