我希望能够使用stroke
来控制image_annotate
的权重。你可以在下面看到虽然这些字母的大小差不多。其中一个是在Frink的尺寸为2000时尺寸小于字母宽度时生成的,而第二个是在Frink尺寸为330时生成的,并且因此产生了更明显的行程。
image_annotate中是否有控制中风重量的机制?
library(magick)
frink <- image_read("https://jeroen.github.io/images/frink.png")
frink %>% image_background("hotpink") %>%
image_scale("1000") %>% image_annotate("CONFIDENTIAL", size = 150,
degrees = 60, location = "+250+500", strokecolor = "white") %>% image_scale("330") %>%
image_annotate("CONFIDENTIAL", size = 50,
degrees = 60, location = "+50+200", strokecolor = "white")