Create a watermark image like in ImageMagick with Magick or other libraries in R

Is it possible to create, with Magick or other libraries in R, a watermark transparent image as with ImageMagick with the following code?

convert -size 420x100 xc:transparent -font ComicSans -pointsize 50 \
-fill black -annotate +24+64 'Copyright' \
-fill white -annotate +26+66 'Copyright' \
-fill transparent -annotate +25+65 'Copyright' \
trans_stamp.png

I posted the same question also here:

I would like to add that with magick it is possible to achieve a similar effect with the function:

image_annotate(img, "my watermark", gravity = "northwest", location = "+70+220",
               degrees = -30, size = 80, font = truetype_path, color = "#FFFFFF66",
               strokecolor = NULL, boxcolor = NULL)

However, the text added does not look transparent like with ImageMagick

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.