Draw line within an image (Vector version). Modifies the image in place.
See also
Other image functions:
export_image(),
export_image_as_code(),
gen_image_cellular(),
gen_image_checked(),
gen_image_color(),
gen_image_gradient_linear(),
gen_image_gradient_radial(),
gen_image_gradient_square(),
gen_image_perlin_noise(),
gen_image_text(),
gen_image_white_noise(),
get_clipboard_image(),
get_image_alpha_border(),
get_image_color(),
image_draw_triangle(),
image_from_image(),
is_image_valid(),
load_font_from_image(),
load_image(),
load_image_from_screen(),
load_image_from_texture(),
load_image_raw(),
load_texture_from_image(),
unload_image()
Examples
if (FALSE) {
img <- gen_image_color(100, 100, "white")
image_draw_line_ex(img, c(0, 0), c(100, 100), 2L, "red")
}
