将任意图片转换成圆形图片

/**
     * 传入的图像必须是正方形的 才会 圆形 如果是长方形的比例则会变成椭圆的
     * @return
     * @throws IOException
     */  
    public static BufferedImage convertCircular(BufferedImage bi1) throws IOException {  
        // 透明底的图片  
        BufferedImage bi2 = new BufferedImage(bi1.getWidth(), bi1.getHeight(), BufferedImage.TYPE_4BYTE_ABGR);  
        Ellipse2D.Double shape = new Ellipse2D.Double(0, 0, bi1.getWidth(), bi1.getHeight());  
        Graphics2D g2 = bi2.createGraphics();  
        g2.setClip(shape);  
        // 使用 setRenderingHint 设置抗锯齿  
        g2.drawImage(bi1, 0, 0, null);  
        // 设置颜色  
        g2.setBackground(Color.green);  
        g2.dispose();
        
        return bi2;  
    } 

你可能感兴趣的:(其他)