次のコードを使用して、Java で jframe を作成しました。これは、指定された url で渡された画像のカスタム アイコンを作成しています。しかし、そのサイズは非常に小さいので、長方形から円形に形状を変更できますか?
class newframe extends JFrame
{
Container cp;
newframe()
{
cp=this.getContentPane();
cp.setLayout(null);
}
public static void main(String args[])
{
newframe frm= new newframe();
frm.setbounds(0,0,1000,800);
frm.setVisible(true);
ImageIcon im1= new ImageIcon("path upto image");
frm.setIconImage(im1.getImage());
}
}