drawSetStrokeAntialias method

void drawSetStrokeAntialias(
  1. bool strokeAntialias
)

DrawSetStrokeAntialias() controls whether stroked outlines are antialiased. Stroked outlines are antialiased by default. When antialiasing is disabled stroked pixels are thresholded to determine if the stroke color or underlying canvas color should be used.

  • strokeAntialias : set to false to disable antialiasing

Implementation

void drawSetStrokeAntialias(bool strokeAntialias) =>
    _magickWandBindings.DrawSetStrokeAntialias(
      _wandPtr,
      strokeAntialias.toInt(),
    );