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


Processing PImage.updatePixels()用法及代碼示例


Processing, 類PImage中的updatePixels()用法介紹。

用法

  • pimg.updatePixels()
  • pimg.updatePixels(x, y, w, h)

參數

  • pimg (PImage) 任何 PImage 類型的對象
  • x (int) 左上角的 x 坐標
  • y (int) 左上角的 y 坐標
  • w (int) 寬度
  • h (int) 高度

返回

  • void

說明

使用pixels[] 數組中的數據更新顯示窗口。與 loadPixels() 結合使用。如果您隻是從數組中讀取像素,則無需調用 updatePixels() — 僅在應用更改時才需要更新。

例子

PImage myImage;
int halfImage;

void setup() {
  size(400, 400);
  halfImage = width * height/2;
  myImage = loadImage("shells.jpg");
  myImage.loadPixels();
  for (int i = 0; i < halfImage; i++) {
    myImage.pixels[i+halfImage] = myImage.pixels[i];
  }
  myImage.updatePixels();
}

void draw() {
  image(myImage, 0, 0);
}
Image output for example 1

相關用法


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