ropensci / magick

Magic, madness, heaven, sin
https://docs.ropensci.org/magick
Other
461 stars 65 forks source link

add strokewidth parameter to image_annotate #388

Closed retowyss closed 1 year ago

retowyss commented 1 year ago

Adding missing strokewidth parameter to image_annotate.

library(magick)

img <- image_blank(480, 320)

image_annotate(img, "Strokewidth Test", size = 60, strokecolor = "red", strokewidth = 1)
image_annotate(img, "Strokewidth Test", size = 60, strokecolor = "red", strokewidth = 2)
jeroen commented 1 year ago

Thanks!