Skip to main content

How to add the tiling/repeating watermark effect to your images?

Comments

3 comments

  • Sebastian Arias

    It would be awesome if you add some pieces of code for node, python etc...

    0
  • Yakir Perlin

    Hi Sebastian,

    Thank you for your suggestion.

    Please see how to create this transformation with Python:

    CloudinaryImage("kitten_fighting.gif").image(effect="brightness:200", flags=["relative", "tiled"], overlay="cloudinary_icon", opacity=50, width=0.3, crop="scale")

    And Node.js:

    cloudinary.image("kitten_fighting.gif", {effect: "brightness:200", flags: ["relative", "tiled"], overlay: "cloudinary_icon", opacity: 50, width: "0.3", crop: "scale"})
    1
  • Sebastian Arias

    Thanks for the fast reply Yakir! That piece of code really helped me accomplished what I needed!

    1

Please sign in to leave a comment.