Watermark to protect from AI scraping
Use the same color as the background text in multiple places on the image or site:
---------------------------------
| Do not scrape or download any images |
---------------------------------
Overlay code for images:
<div style="position:relative; display:inline-block;"><img src="image.jpg" alt="Image"><div style="position:absolute; top:0; left:0; right:0; bottom:0; background:transparent;"></div></div>
Create Custom Landing Pages
Create a unique landing page for each image or batch of images. The URL is the watermark
This will stop users from dragging images to their desktops
Save Images in Base64
to protect from AI scraping
Prevent Dragging of Images
This code used as a watermark will stop users from dragging images to their desktops
document.addEventListener('dragstart', function(event) { if (event.target.tagName === 'IMG') { event.preventDefault(); } });