Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PNG画像があり、ブラシとして使用したいと思います。
何かを描きたいですJPanel。
JPanel
画像を読み込んでブラシとして使用するにはどうすればよいJPanelですか?
final Image image = new ImageIcon("C:/images/image.png").getImage(); JPanel panel = new JPanel() { @Override protected void paintComponent(Graphics g) { g.drawImage(imageToPaint, (desired x location), (desired y location), null); } };