एक छवि प्रदर्शित करने के लिए, आप URL से छवि लोड करने के लिए ImageIcon क्लास का उपयोग कर सकते हैं। फिर आप ImageIcon को JLabel में जोड़ सकते हैं, जिसे आप JPanel में जोड़ सकते हैं।
यहां एक उदाहरण दिया गया है कि URL से एक छवि कैसे लोड करें और उसे JPanel में कैसे प्रदर्शित करें:
import java.awt.Image; import java.awt.image.ImageIcon; import java.net.URL; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JPanel; public class DisplayImage { public static void main(String[] args) { // Create a panel to hold the image JPanel panel = new JPanel(); // Load the image from a URL Image image = Toolkit.getDefaultToolkit().getImage(new URL("http://www.example.com/image.jpg")); // Create an ImageIcon from the image ImageIcon icon = new ImageIcon(image); // Create a label to hold the image icon JLabel label = new JLabel(icon); // Add the label to the panel panel.add(label); // Add the panel to the frame JFrame frame = new JFrame(); frame.getContentPane().add(panel); // Set the size of the frame frame.setSize(400, 400); // Display the frame frame.setVisible(true); } }
यह कोड दिए गए यूआरएल से छवि लोड करेगा और इसे जेपीनल में प्रदर्शित करेगा। छवि का आकार JPanel के आकार से निर्धारित किया जाएगा।
अस्वीकरण: उपलब्ध कराए गए सभी संसाधन आंशिक रूप से इंटरनेट से हैं। यदि आपके कॉपीराइट या अन्य अधिकारों और हितों का कोई उल्लंघन होता है, तो कृपया विस्तृत कारण बताएं और कॉपीराइट या अधिकारों और हितों का प्रमाण प्रदान करें और फिर इसे ईमेल पर भेजें: [email protected] हम इसे आपके लिए यथाशीघ्र संभालेंगे।
Copyright© 2022 湘ICP备2022001581号-3