imageDrawRectangleLines function

void imageDrawRectangleLines(
  1. Image dst,
  2. Rectangle rec,
  3. int thick,
  4. Color color,
)

Draw rectangle lines within an image.

Implementation

void imageDrawRectangleLines(Image dst, Rectangle rec, int thick, Color color) {
  return library.ImageDrawRectangleLines(
    dst.pointer,
    rec.ref,
    thick,
    color.ref,
  );
}