Ejemplo n.º 1
0
 private void DrawOutputImage()
 {
     for (int col = 0; col < numCols; col++)
     {
         for (int row = 0; row < numRows; row++)
         {
             Point insertPosition = new Point(borderThicknessW + col * (CropArea.Width + borderThicknessW), borderThicknessH + row * (CropArea.Height + borderThicknessH));
             OutputImage.Mutate(i => i
                                .DrawImage(CroppedImage, 1, insertPosition));
         }
     }
     if (OutputImageRotationDegrees > 0.0)
     {
         OutputImage.Mutate(i => i.Rotate(OutputImageRotationDegrees));
     }
 }