Exemplo n.º 1
0
 public void TestCreateImageOfBlockOne()
 {
     FloorPlan image1 = new FloorPlan(new Bitmap("../../testImage.jpg"), 1);
     Bitmap test_image = image1.toImage();
     test_image.Save("../../testImage_block1.bmp");
 }
Exemplo n.º 2
0
 public void TestCreateImageOfBlockFive()
 {
     FloorPlan image1 = new FloorPlan(new Bitmap("../../testImage.jpg"), 5);
     Bitmap b = image1.toImage();
     b.Save("../../testImage_block5.bmp");
 }