说明
设置后面的文本大小。默认大小为“1”。每次更改大小都会使文本的高度增加 10 个像素。也就是说,尺寸 1 = 10 像素,尺寸 2 = 20 像素,依此类推。
用法
screen.setTextSize(size);
参数
尺寸:int1-5
返回
空
示例
#include <SPI.h>
#include <TFT.h> // Arduino TFT library
#define cs 10
#define dc 9
#define rst 8
TFT screen = TFT(cs, dc, rst);
void setup() {
// initialize the screen
screen.begin();
// make the background black
screen.background(0,0,0);
// set the stroke color to white
screen.fill(255,255,255);
// default text size
screen.setTextSize(1);
// write text to the screen in the top left corner
screen.text("Testing!", 0, 0);
// increase text size
screen.setTextSize(5);
// write text to the screen below
screen.text("BIG!", 0, 10);
}
void loop() {
}
相关用法
- Arduino TFT - stroke()用法及代码示例
- Arduino TFT - PImage.width()用法及代码示例
- Arduino TFT - height()用法及代码示例
- Arduino TFT - background()用法及代码示例
- Arduino TFT - PImage.height()用法及代码示例
- Arduino TFT - line()用法及代码示例
- Arduino TFT - EsploraTFT用法及代码示例
- Arduino TFT - loadImage()用法及代码示例
- Arduino TFT - PImage用法及代码示例
- Arduino TFT - width()用法及代码示例
- Arduino TFT - TFT用法及代码示例
- Arduino TFT - image()用法及代码示例
- Arduino TFT - point()用法及代码示例
- Arduino TFT - rect()用法及代码示例
- Arduino TFT - begin()用法及代码示例
- Arduino TFT - circle()用法及代码示例
- Arduino TFT - noStroke()用法及代码示例
- Arduino TFT - fill()用法及代码示例
- Arduino TFT - PImage.isValid()用法及代码示例
- Arduino TFT - noFill()用法及代码示例
- Arduino TFT - text()用法及代码示例
- Arduino long用法及代码示例
- Arduino Arduino_EMBRYO_2 - setLengthXY()用法及代码示例
- Arduino ~用法及代码示例
- Arduino ArduinoBLE - bleDevice.advertisedServiceUuidCount()用法及代码示例
注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 TFT - setTextSize()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。