當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing textLeading()用法及代碼示例


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);
Image output for example 1

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 textLeading()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。