我试图制作Text
节点小型上限。在CSS中,我可以font-variant: small-caps;
制作小型大写字母;但是,JavaFX似乎没有这个。我知道我可以使用两个字体大小的TextFlow
,但这似乎是一个不优雅的解决方案。
有没有简单的方法在JavaFX中制作文本小型大写字母?
答案 0 :(得分:1)
Google" Google fonts"。此外,谷歌,看看你是否能找到一些自然small caps
的字体。我发现了一个。您可以在下面的JavaFX
应用中查看如何使用Google字体。
代码。
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.stage.Stage;
/**
*
* @author Sedrick
*/
public class JavaFXApplication44 extends Application {
@Override
public void start(Stage primaryStage) {
Label label = new Label("Hello @FontFace\n-- Gafata --");
label.setStyle("-fx-font-family: 'IM Fell French Canon SC', serif; -fx-font-size: 80;");
Scene scene = new Scene(label);
scene.getStylesheets().add("https://fonts.googleapis.com/css?family=IM+Fell+French+Canon+SC");
primaryStage.setTitle("Hello @FontFace");
primaryStage.setScene(scene);
primaryStage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}