Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

CSS3 का उपयोग करके एक छवि को ग्रेस्केल में परिवर्तित करना

<घंटा/>

CSS3 में एक छवि को ग्रेस्केल में बदलने के लिए, फ़िल्टर गुण के लिए ग्रेस्केल मान का उपयोग करें।

उदाहरण

आइए एक उदाहरण देखें -

<!DOCTYPE html>
<html>
<head>
<style>
img.demo {
   filter: brightness(120%);
   filter: contrast(120%);
   filter: grayscale(130%);
}
</style>
</head>
<body>
<h1>Spring Framework</h1>
<img src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring" width="160" height="150">
<h1>Learn MySQL</h1>
<p>Below image is brighter and has more contrast than the original image above. With that the image is in grayscale:</p>
<img class="demo" src="https://www.tutorialspoint.com/spring/images/spring-mini-logo.jpg" alt="Spring" width="160" height="150">
</body>
</html>

आउटपुट

CSS3 का उपयोग करके एक छवि को ग्रेस्केल में परिवर्तित करना


  1. OpenCV का उपयोग करके एक छवि पर आयत बनाएं

    इस कार्यक्रम में, हम OpenCV फ़ंक्शन आयत () का उपयोग करके एक आयत बनाएंगे। यह फ़ंक्शन कुछ पैरामीटर लेता है जैसे निर्देशांक प्रारंभ करना, निर्देशांक समाप्त करना, रंग और मोटाई और स्वयं छवि। मूल चित्र एल्गोरिदम Step 1: Import cv2. Step 2: Read the image using imread(). Step 3: Define the starting coord

  1. OpenCV का उपयोग करके एक छवि पर एक दीर्घवृत्त बनाएं

    इस कार्यक्रम में, हम OpenCV लाइब्रेरी का उपयोग करते हुए एक छवि पर एक दीर्घवृत्त खींचेंगे। हम इसके लिए OpenCV फ़ंक्शन दीर्घवृत्त () का उपयोग करेंगे। मूल चित्र एल्गोरिदम Step 1: Import cv2. Step 2: Read the image using imread(). Step 3: Set the center coordinates. Step 4: Set the axes length. Step 5

  1. OpenCV का उपयोग करके किसी छवि को रंग से ग्रेस्केल में कनवर्ट करना

    इस कार्यक्रम में, हम एक छवि की रंग योजना को rgb से ग्रेस्केल में बदल देंगे एल्गोरिदम Step 1: Import OpenCV. Step 2: Read the original image using imread(). Step 3: Convert to grayscale using cv2.cvtcolor() function. उदाहरण कोड import cv2 image = cv2.imread('colourful.jpg') cv2.imshow('Or