本文概述
- 物产
- 建设者
物产 下表描述了类的属性及其设置方法。
属性 | 描述 | 设置方法 |
---|---|---|
source | 源图像的URL。 | setSource(Image image) |
X | 图像的X坐标 | setX(Double value) |
Y | 图像的Y坐标 | setY(Double value) |
- ImageInput():使用默认参数实例化ImageInput类。
- ImageInput(Image source):使用指定的图像源实例化ImageInput。
- ImageInput(Image source, Double X, Double Y):使用默认图像源和指定坐标实例化ImageInput
package application;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.effect.ImageInput;
import javafx.scene.image.Image;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
public class ImageInputExample extends Application {@Overridepublic void start(Stage primaryStage) throws Exception { // TODO Auto-generated method stub Image img = new Image("https://www.srcmini.com/jogl/images/jogl-3d-triangle.gif");
ImageInput imginput = new ImageInput();
Rectangle rect = new Rectangle();
imginput.setSource(img);
imginput.setX(20);
imginput.setY(100);
Group root = new Group();
rect.setEffect(imginput);
root.getChildren().add(rect);
Scene scene = new Scene(root, 530, 500, Color.BLACK);
primaryStage.setScene(scene);
primaryStage.setTitle("ImageInput Example");
primaryStage.show();
} public static void main(String[] args) { launch(args);
} }
文章图片
推荐阅读
- 安装Eclipse详细步骤
- JavaFX超链接
- JavaFX HBox
- JavaFX渐变颜色
- JavaFX GridPane
- JavaFX发光效果
- 桌面图标怎样变小,本文教您处理桌面图标变小的办法
- 怎样更改wifi密码,本文教您更改WiFi密码的办法
- 浏览器打开不了,本文教您处理浏览器打开不了页面的办法