1

我有一个问题,使文本斜体到阿拉伯语文本,它不起作用,我也尝试了不同类型的字体,但它们都不起作用,这是代码:

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.scene.text.Text;
import javafx.stage.Stage;


public class JavafxApp extends Application {

    public static void main(String[] args) {
        launch(args);
    }

    @Override
    public void start(Stage primaryStage) {
        var pane = new AnchorPane();
        var text = new Text("عربي English");
        text.setLayoutX(50);
        text.setLayoutY(100);
        text.setStyle("-fx-font-style: italic; -fx-font-size: 18; -fx-font- 
        family : Simplified Arabic;");
        pane.getChildren().add(text);
        var scene = new Scene(pane, 200, 200);
        primaryStage.setScene(scene);
        primaryStage.show();

    }
}

结果

有什么建议么?我将感激不尽

4

1 回答 1

1

您的问题是,很可能您的 Windows 字体文件夹中没有 ITALIC 版本的字体,因为当不存在该样式的字体时,JavaFX 不支持合成粗体或斜体字体

请参阅长期存在的 RFE: JDK-8091064JDK-8130526

这意味着您需要在字体系列中使用斜体字体

于 2018-05-08T04:27:53.103 回答