Remove the Meta AI 'Imagined with AI' Watermark
Images from Meta AI — imagine.meta.com or the assistant inside Facebook, Instagram and WhatsApp — carry a visible 'Imagined with AI' label, typically a small text badge pinned to a corner. It's a static, single-position overlay, which makes it one of the cleaner AI watermarks to remove: WatermarkRemoverAI inpaints the badge and rebuilds the corner beneath it. Meta also attaches invisible markers to AI images on its platforms — those live in metadata and embedded signals, not the visible pixels, and are a separate layer from the label this page is about.
Watermark status — updated August 11, 2026
Meta still stamps a visible 'Imagined with AI' label on images generated at imagine.meta.com and in its apps, and separately attaches invisible markers (IPTC metadata and embedded signals) to AI images shared across Facebook, Instagram and WhatsApp. Updated as Meta's labeling changes.
How to remove the Meta AI 'Imagined with AI' watermark
Upload the Meta AI image
Add the PNG or JPG you generated. Find the 'Imagined with AI' label — a small text badge, usually in a bottom corner.
Brush the label
Paint over the badge text and any translucent backing strip behind it. Because it doesn't move, a tight mask on that corner is enough.
Download clean
Export the image with the corner reconstructed — no visible label, no crop, full resolution.
Good to know
Removes the visible 'Imagined with AI' badge only. Meta's invisible markers travel in metadata and embedded signals, and its platforms may still label the image as AI when reposted.
Frequently Asked Questions
Where does the Meta AI watermark appear?
It's the 'Imagined with AI' text badge, pinned to a corner of images generated with Meta AI. It holds one position and doesn't animate, so masking that corner removes it cleanly — fixed-position labels are the forgiving case.
Does removing the label remove Meta's invisible markers?
No. Meta also embeds invisible signals — IPTC metadata and watermarking baked into the pixels at generation time. This tool removes the visible badge only and does not target the invisible layer.
Will the corner look patched after removal?
Because the label sits in one place, the AI has consistent surrounding pixels to rebuild from, so the corner blends in rather than showing a smear or a blur box.
If I repost it, will platforms still label it as AI?
They may. Meta's apps can re-detect AI images via the invisible markers and apply their own 'AI info' label regardless of the visible badge. Removing the on-image label doesn't change the image's AI origin.
Is it okay to remove the 'Imagined with AI' badge?
Use it on images you generated, for your own design and branding work. Where a platform requires AI content to be disclosed, keep disclosing it — the badge removal is cosmetic, not a change of provenance.
Related Guides
Automate it with the API
Send a file, get a job id back, poll for the clean result. Same AI engine as the web tool, in two requests.
curl -X POST https://api.watermarkremoverai.com/v1/watermark/remove-image/ \
-H "Authorization: YOUR_API_TOKEN" \
-F "files=@photo.jpg" \
-F "auto_detect=true"
# => {"uuid": "..."}
# Poll for the result
curl -X POST https://api.watermarkremoverai.com/v1/watermark/results/ \
-d "uuid=..."
import requests
API = "https://api.watermarkremoverai.com/v1/watermark"
headers = {"Authorization": "YOUR_API_TOKEN"}
with open("photo.jpg", "rb") as f:
job = requests.post(API + "/remove-image/",
headers=headers,
files={"files": f},
data={"auto_detect": "true"}).json()
result = requests.post(API + "/results/",
data={"uuid": job["uuid"]}).json()
print(result)
Prefer a manual mask? Send mask=@mask.png instead of auto_detect, or pass mask_x / mask_y / mask_width / mask_height (add mask_is_percentage=true for percentages). Optional dilation=5 grows the masked area.
Ready to clean it up?
Upload, mark the area, and download the clean result. No account needed to try it free.
Open the Tool