चमक सेट करने के लिए, चमक का उपयोग करें संपत्ति और इसके विपरीत के लिए, विपरीत संपत्ति का उपयोग करें।
उदाहरण
जावास्क्रिप्ट के साथ इमेज फिल्टर का उपयोग करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <p>Click below to change the brightness and contrast of the image.</p> <button onclick="display()">Edit Image</button><br><br> <img id="myID" src="https://www.tutorialspoint.com/videotutorials/images/tutorial_library_home.jpg" alt="Tutorials Library" width="320" height="320"> <script> function display() { document.getElementById("myID").style.filter = "brightness(50%)"; document.getElementById("myID").style.filter = "contrast(50%)"; } </script> </body> </html>