径向渐变 : 涂料 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 涂料屏幕截图 
径向渐变
径向渐变

 
 

/*
 * Copyright (c) 2007, Romain Guy
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   * Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above
 *     copyright notice, this list of conditions and the following
 *     disclaimer in the documentation and/or other materials provided
 *     with the distribution.
 *   * Neither the name of the TimingFramework project nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

import java.awt.AlphaComposite;
import java.awt.Color;
import java.awt.Composite;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.GradientPaint;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Paint;
import java.awt.RadialGradientPaint;
import java.awt.RenderingHints;
import java.awt.font.FontRenderContext;
import java.awt.font.TextLayout;
import java.awt.geom.AffineTransform;
import java.awt.geom.Area;
import java.awt.geom.Ellipse2D;
import java.awt.geom.Point2D;
import java.awt.geom.Rectangle2D;
import javax.swing.JComponent;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;

/**
 *
 @author Romain GUy
 */
public class RadialGradientApp extends JFrame {
    
    /** Creates a new instance of RadialGradientApp */
    public RadialGradientApp() {
        super("Radial Gradient");
        
        JPanel panel = new JPanel();
        panel.add(new SphereComponent());
        add(panel);
        
        pack();
        setLocationRelativeTo(null);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
    
    public static void main(String... args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new RadialGradientApp().setVisible(true);
            }
        });
    }
}
/*
 * Copyright (c) 2007, Romain Guy
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *   * Redistributions of source code must retain the above copyright
 *     notice, this list of conditions and the following disclaimer.
 *   * Redistributions in binary form must reproduce the above
 *     copyright notice, this list of conditions and the following
 *     disclaimer in the documentation and/or other materials provided
 *     with the distribution.
 *   * Neither the name of the TimingFramework project nor the names of its
 *     contributors may be used to endorse or promote products derived
 *     from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

/**
 *
 @author Romain Guy
 */
 class SphereComponent extends JComponent {
    
    /** Creates a new instance of SphereComponent */
    public SphereComponent() {
    }
    
    @Override
    public Dimension getPreferredSize() {
        return new Dimension(120120);
    }
    
    @Override
    protected void paintComponent(Graphics g) {
        setFont(getFont().deriveFont(70.f).deriveFont(Font.BOLD));
        
        Graphics2D g2 = (Graphics2Dg;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                RenderingHints.VALUE_ANTIALIAS_ON);
        
        // Retains the previous state
        Paint oldPaint = g2.getPaint();

        // Fills the circle with solid blue color
        g2.setColor(new Color(0x0153CC));
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Adds shadows at the top
        Paint p;
        p = new GradientPaint(00new Color(0.0f0.0f0.0f0.4f),
                0, getHeight()new Color(0.0f0.0f0.0f0.0f));
        g2.setPaint(p);
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Adds highlights at the bottom 
        p = new GradientPaint(00new Color(1.0f1.0f1.0f0.0f),
                0, getHeight()new Color(1.0f1.0f1.0f0.4f));
        g2.setPaint(p);
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Creates dark edges for 3D effect
        p = new RadialGradientPaint(new Point2D.Double(getWidth() 2.0,
                getHeight() 2.0), getWidth() 2.0f,
                new float[] { 0.0f1.0f },
                new Color[] { new Color(676160127),
                    new Color(0.0f0.0f0.0f0.8f) });
        g2.setPaint(p);
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Adds oval inner highlight at the bottom
        p = new RadialGradientPaint(new Point2D.Double(getWidth() 2.0,
                getHeight() 1.5), getWidth() 2.3f,
                new Point2D.Double(getWidth() 2.0, getHeight() 1.75 6),
                new float[] { 0.0f0.8f },
                new Color[] { new Color(64142203255),
                    new Color(641422030) },
                RadialGradientPaint.CycleMethod.NO_CYCLE,
                RadialGradientPaint.ColorSpaceType.SRGB,
                AffineTransform.getScaleInstance(1.00.5));
        g2.setPaint(p);
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Adds oval specular highlight at the top left
        p = new RadialGradientPaint(new Point2D.Double(getWidth() 2.0,
                getHeight() 2.0), getWidth() 1.4f,
                new Point2D.Double(45.025.0),
                new float[] { 0.0f0.5f },
                new Color[] { new Color(1.0f1.0f1.0f0.4f),
                    new Color(1.0f1.0f1.0f0.0f) },
                RadialGradientPaint.CycleMethod.NO_CYCLE);
        g2.setPaint(p);
        g2.fillOval(00, getWidth() 1, getHeight() 1);
        
        // Restores the previous state
        g2.setPaint(oldPaint);
        
        // Draws the logo        
//        FontRenderContext context = g2.getFontRenderContext();
//        TextLayout layout = new TextLayout("R", getFont(), context);
//        Rectangle2D bounds = layout.getBounds();
//        
//        float x = (getWidth() - (float) bounds.getWidth()) / 2.0f;
//        float y = (getHeight() + (float) bounds.getHeight()) / 2.0f;
//        
//        g2.setColor(Color.WHITE);
//        layout.draw(g2, x, y);
//        
//        Area shadow = new Area(layout.getOutline(null));
//        shadow.subtract(new Area(layout.getOutline(AffineTransform.getTranslateInstance(1.0, 1.0))));
//        g2.setColor(Color.BLACK);
//        g2.translate(x, y);
//        g2.fill(shadow);
//        g2.translate(-x, -y);
    }
}


 

 
Related examples in the same category
1. 绘制字符串绘制字符串
2. 绘制的颜色和文字绘制的颜色和文字
3. 反锯齿反锯齿
4. 绘制绘制
5. 绘制网格绘制网格
6. Paint Test Paint Test
7. Render Quality Test Render Quality Test
8. 绘制绘制
9. 图片缩放
10. 关于中心变换
11. 安全重绘
12. 量表测试
13. Scaling Methods
14. 简单属性的绘画
15. 两站梯度两站梯度
16. 坏与好原始渲染
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.