PImage()

描述

存放要顯示在螢幕上的圖片的類別。要使用 PImage 必須引入 SD 函式庫。

語法


PImage image;

參數

imagePImage 物件的名稱

回傳

無回傳值

範例

// 把 SD 卡中名為 "arduino.bmp" 的圖片顯示在螢幕上
#include <SPI.h>
#include <SD.h>
#include <TFT.h>

#define cs   10
#define dc   9
#define rst  8

TFT screen = TFT(cs, dc, rst);

PImage logo;

void setup() {
  // 初始化 TFT 物件
  screen.begin();
  // 初始化 SD 卡
  SD.begin();
  // 設定背景色為黑色
  screen.background(0, 0, 0);

  // 載入圖片到 PImage 物件
  logo = screen.loadImage("arduino.bmp");

   if (!logo.isValid()) {
       Serial.println("error while loading arduino.bmp");
  }

  // 從螢幕的左上角開始顯示圖片
  screen.image(logo, 0, 0);
}

void loop() {

}

See also

image
loadImage()
isValid()


函式庫參考主頁面

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.