imager (version 0.42.7)

draw_text: Draw text on an image

Description

Like other native CImg drawing functions, this is meant to be basic but fast. Use implot for flexible drawing.

Usage

draw_text(im, x, y, text, color, opacity = 1, fsize = 20)

Arguments

im

an image

x

x coord.

y

y coord.

text

text to draw (a string)

color

either a vector or a string (e.g. "red")

opacity

0: transparent 1: opaque.

fsize

font size (in pix., default 20)

Value

an image

See Also

implot,draw_circle,draw_rect

Examples

Run this code
# NOT RUN {
draw_text(boats,100,100,"Some text",col="black") %>% plot
# }

Run the code above in your browser using DataCamp Workspace