Image
drawText
draws text over an Image
object.
This operation is destructive: it changes irreversibly the Image
object and cannot be undone.
drawText(image, text, x, y, font_face = "simplex", font_scale = 1,
italic = FALSE, color = "red", thickness = 1, bl_orig = TRUE)
An Image
object.
A character string representing the text to be drawn.
A numeric value representing the x coordinate of the bottom left
corner of the text string (or top left if bl_orig == TRUE
).
A numeric value representing the y coordinate of the bottom left
corner of the text string (or top left if bl_orig == TRUE
).
A character string representing the font type of the text (default: "simplex"). See notes for a list of available font types.
A numeric value representing the scale factor by which the font-specific base size is multiplied (default: 1).
A logical specifying whether the text should italicized (default: FALSE).
Any kind of R color specification compatible with
col2rgb
representing the color of the line (default: "red").
A numeric value representing the thickness in pixels of the line (default: 1).
A logical specifying the origin of the text drawing (default: TRUE). If TRUE, the text is drawn right-side-up. If FALSE, it is drawn upside-down.
This function does not return anything. It modifies image
in
place.