Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Bild in eine andere Farbe umwandeln</title> <style> img { width:40%; float:left; } .image1 { filter: invert(100%); -webkit-filter: invert(100%); } .image2 { filter: sepia(100%); -webkit-filter: sepia(100%); } </style> </head> <body> <h2>Die Farbe des PNG-Bildes ändern</h2> <img class="image1" src="https://www.sccpre.cat/mypng/detail/122-1229311_bird-feathers-flying-macaw-wings-birds-with-white.png" width="500px" height="250px" alt="filter applied" /> <img class="image2" src="https://www.sccpre.cat/mypng/detail/122-1229311_bird-feathers-flying-macaw-wings-birds-with-white.png" width="500px" height="250px" alt="filter applied" /> </body> </html>