Processing, textLeading()
用法介紹。
用法
textLeading(leading)
參數
leading
(float)
行間距的像素大小
返回
void
說明
以像素為單位設置文本行之間的間距。此設置將用於所有後續調用 text()
函數。但是請注意,前導由 textSize()
重置。例如,如果使用 textLeading(20)
將行距設置為 20,那麽如果稍後運行 textSize(48)
,則行距將重置為文本大小 48 的默認值。
例子
size(400, 400);
// Text to display. The "\n" is a "new line" character
String lines = "L1\nL2\nL3";
textSize(48);
fill(0); // Set fill to black
textLeading(40); // Set leading to 40
text(lines, 40, 100);
textLeading(80); // Set leading to 80
text(lines, 160, 100);
textLeading(120); // Set leading to 120
text(lines, 280, 100);
相關用法
- Processing texture()用法及代碼示例
- Processing textSize()用法及代碼示例
- Processing textureMode()用法及代碼示例
- Processing text()用法及代碼示例
- Processing textDescent()用法及代碼示例
- Processing textFont()用法及代碼示例
- Processing textAscent()用法及代碼示例
- Processing textAlign()用法及代碼示例
- Processing textMode()用法及代碼示例
- Processing textWidth()用法及代碼示例
- Processing textureWrap()用法及代碼示例
- Processing thread()用法及代碼示例
- Processing triangle()用法及代碼示例
- Processing trim()用法及代碼示例
- Processing true用法及代碼示例
- Processing this用法及代碼示例
- Processing try用法及代碼示例
- Processing tint()用法及代碼示例
- Processing tan()用法及代碼示例
- Processing translate()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 textLeading()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。