Processing, 類PFont
用法介紹。
說明
PFont 是處理的字體類。要創建用於處理的字體,請從“工具”菜單中選擇“創建字體...”。這將創建處理所需格式的字體,並將其添加到當前草圖的數據目錄中。 Processing 使用 .vlw 字體格式顯示字體,該格式使用每個字母的圖像,而不是通過矢量數據定義它們。 loadFont()
函數構造一個新字體,textFont()
使字體處於活動狀態。 list()
方法創建計算機上安裝的字體列表,這是與 createFont()
函數一起使用的有用信息,用於將字體動態轉換為用於處理的格式。
要動態創建新字體,請使用createFont()
函數。不要使用語法 new PFont()
。
例子
size(400, 400);
PFont font;
// The font must be located in the sketch's
// "data" directory to load successfully
font = createFont("LetterGothicStd.otf", 128);
textFont(font);
text("word", 50, 200);
方法
- PFont.list()獲取係統上安裝的字體列表
相關用法
- Processing PFont.list()用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing PWM.set()用法及代碼示例
- Processing PVector.normalize()用法及代碼示例
- Processing PVector.limit()用法及代碼示例
- Processing PShape用法及代碼示例
- Processing PImage.resize()用法及代碼示例
- Processing PVector.div()用法及代碼示例
- Processing PVector.cross()用法及代碼示例
- Processing PShape.setStroke()用法及代碼示例
- Processing PVector.random2D()用法及代碼示例
- Processing PImage.width用法及代碼示例
- Processing PShape.addChild()用法及代碼示例
- Processing PShape.isVisible()用法及代碼示例
- Processing PShape.getChildCount()用法及代碼示例
- Processing PrintWriter.print()用法及代碼示例
- Processing PImage.get()用法及代碼示例
- Processing PVector.lerp()用法及代碼示例
- Processing PinkNoise.pan()用法及代碼示例
- Processing PVector.heading()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 PFont。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。