Alle mit KI erstellten Bilder müssen als solche gekennzeichnet werden. Das gilt zwingend für alle Bilder, die ab dem 2. August 2026 erstellt wurden.
So geht's im Editor:
Danach zeigt das Bild automatisch unten rechts den Hinweis „Bild mit KI erstellt".
selector {
position: relative;
overflow: hidden;
}
selector::after {
content: "Bild mit KI erstellt";
position: absolute;
right: 10px;
bottom: 10px;
padding: 4px 9px;
border-radius: 5px;
background: rgba(0, 0, 0, 0.38);
color: rgba(255, 255, 255, 0.85);
font-family: inherit;
font-size: 11px;
line-height: 1.2;
letter-spacing: 0.2px;
white-space: nowrap;
pointer-events: none;
z-index: 5;
}
@media (max-width: 767px) {
selector::after {
right: 8px;
bottom: 8px;
padding: 3px 7px;
font-size: 9px;
}
}