我做了一些关于如何使用JavaFX为图像的特定部分着色的研究,但我似乎找不到任何关于此的信息。我希望能够在JavaFX中为以下图像的不同部分(每个部分使用不同的颜色)着色:
可以轻松完成吗?
修改 这张照片更清晰地显示了我正在尝试做的事情:
image with different sections http://s12.postimg.org/wofhjvy2h/image_2.jpg
答案 0 :(得分:2)
您可以使用具有不同颜色和位置的组和矩形。
以下是示例:
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
public class Main extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) {
Group root = new Group();
Rectangle rect1 = new Rectangle(400,100);
Rectangle rect2 = new Rectangle(400,125);
Rectangle rect3 = new Rectangle(400,175);
Rectangle rect4 = new Rectangle(200,250);
rect1.setFill(Color.BLUE);
rect2.setFill(Color.RED);
rect3.setFill(Color.YELLOW);
rect4.setFill(Color.GREEN);
rect2.setLayoutY(100);
rect3.setLayoutY(225);
rect4.setLayoutX(200);
rect4.setLayoutY(150);
root.getChildren().addAll(rect1,rect2,rect3,rect4);
primaryStage.setScene(new Scene(root, 400, 400));
primaryStage.show();
}
}