stroke()
描述
設定顯示線段的顏色。
stroke() 的三個參數 red, green, blue,大小都是 8-bit,但是 stroke() 在顯示時,red 和 blue 只會使用 5-bit,green 只會使用 6-bit,使用等比例的方法把原本的值縮小。
語法
screen.stroke(red, green, blue);
參數
red:紅色的數值,範圍為 0~255,型態為 int
green:綠色的數值,範圍為 0~255,型態為 int
blue:藍色的數值,範圍為 0~255,型態為 int
回傳
無回傳值
範例
#include <SPI.h>
#include <TFT.h>
#define cs 10
#define dc 9
#define rst 8
TFT screen = TFT(cs, dc, rst);
void setup() {
// 初始化 TFT 物件
screen.begin();
// 設定背景色為黑色
screen.background(0,0,0);
// 設定線段的顏色為白色
screen.stroke(255,255,255);
// 在正中央畫一個長方形
screen.rect(screen.width()/2+10,screen.height()/2+10,screen.width()/2-10,screen.height()/2-10);
}
void loop() {
}
See also
- background()
- noStroke()
- fill()
The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.
