本文概述
- 物产
- 建设者
物产 下表描述了该类的属性以及setter方法。
属性 | 描述 | 设置方法 |
---|---|---|
input | 此属性是效果类型。它代表效果的输入。 | setInput(Effect value) |
radius | 此属性是双精度类型。它代表模糊内核的半径。 | setRadius(Double value) |
- public GaussianBlur():使用参数的默认值创建新实例。
- public GaussianBlur(double radius):使用指定的参数值创建一个新实例。
package application;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.effect.BoxBlur;
import javafx.scene.effect.GaussianBlur;
import javafx.scene.paint.Color;
import javafx.scene.text.Font;
import javafx.scene.text.FontPosture;
import javafx.scene.text.FontWeight;
import javafx.scene.text.Text;
import javafx.stage.Stage;
public class GaussianBlurExample extends Application{ @Override public void start(Stage primaryStage) throws Exception {// TODO Auto-generated method stubText text = new Text();
text.setText("Welcome to srcmini");
text.setX(100);
text.setY(100);
text.setFont(Font.font("Calibri", FontWeight.BLACK, FontPosture.ITALIC, 20));
text.setFill(Color.RED);
text.setStroke(Color.BLACK);
text.setUnderline(true);
GaussianBlur g = new GaussianBlur();
g.setRadius(5);
text.setEffect(g);
Group root = new Group();
root.getChildren().add(text);
Scene scene = new Scene(root, 450, 200);
primaryStage.setScene(scene);
primaryStage.setTitle("GaussianBlur Example");
primaryStage.show();
}public static void main(String[] args) { launch(args);
}}
文章图片
推荐阅读
- Myeclipse开发安卓-安装ADT,SDK
- JavaFX事件处理
- JavaFX FlowPane
- JavaFX FileChooser
- JavaFX填充过渡
- JavaFX淡入淡出过渡
- JavaFX事件处理程序
- JavaFX事件过滤器
- JavaFX椭圆