ImageMagick.DrawingWand.Affine C# (CSharp) Method

Affine() public method

public Affine ( double scaleX, double scaleY, double shearX, double shearY, double translateX, double translateY ) : void
scaleX double
scaleY double
shearX double
shearY double
translateX double
translateY double
return void
    public void Affine(double scaleX, double scaleY, double shearX, double shearY, double translateX, double translateY)
    {
      _NativeInstance.Affine(scaleX, scaleY, shearX, shearY, translateX, translateY);
    }

Usage Example

Example #1
0
 /// <summary>
 /// Draws this instance with the drawing wand.
 /// </summary>
 /// <param name="wand">The want to draw on.</param>
 void IDrawingWand.Draw(DrawingWand wand)
 {
     if (wand != null)
     {
         wand.Affine(ScaleX, ScaleY, ShearX, ShearY, TranslateX, TranslateY);
     }
 }
All Usage Examples Of ImageMagick.DrawingWand::Affine