ImageDrawRectangle method

void ImageDrawRectangle(
  1. Pointer<ImageC> dst,
  2. int posX,
  3. int posY,
  4. int width,
  5. int height,
  6. ColorC color,
)

Draw rectangle within an image

Implementation

void ImageDrawRectangle(Pointer<ImageC> dst, int posX, int posY, int width, int height, ColorC color)
  => _ImageDrawRectangle(dst, posX, posY, width, height, color);