Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

tint(255);Originale Darstellung des Bildes

Processing_03_1Image RemovedImage Added

tint(100);Etwas mehr Schwarz-Anteile

Processing_03_2Image RemovedImage Added

tint(255,127);Transparenz auf 50%

Processing_03_3Image RemovedImage Added

tint(0,200,127);Grünlich einfärben

Processing_03_5Image RemovedImage Added

tint(255,0,0,200);Rot einfärben und Transparenz auf ca.75%

Processing_03_4Image RemovedImage Added 

Code Block
titleBeispiel
collapsetrue
PImage myImage;

void setup() {
  size(200,200);
  myImage = loadImage("EinBild.png");
}

void draw() {
  background(255);
  tint(100);
  image(myImage, 0, 0, width, height);
}

...