loadPixels





loadPixels() \ Language (API) \ Processing 1.0
























Search processing.org:





Language (A-Z) \ Libraries \ Tools \ Environment \ Compare \ Troubleshooting






Reference for Processing version 1.0+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.

Name loadPixels() Examples int halfImage = width*height/2; PImage myImage = loadImage("topanga.jpg"); image(myImage, 0, 0); loadPixels(); for (int i = 0; i < halfImage; i++) { pixels[i+halfImage] = pixels[i]; } updatePixels(); Description Loads the pixel data for the display window into the pixels[] array. This function must always be called before reading from or writing to pixels[]. Certain renderers may or may not seem to require loadPixels() or updatePixels(). However, the rule is that any time you want to manipulate the pixels[] array, you must first call loadPixels(), and after changes have been made, call updatePixels(). Even if the renderer may not seem to use this function in the current Processing release, this will always be subject to change. Syntax loadPixels() Usage Web & Application Related pixels[]updatePixels()

Updated on November 22, 2008 08:39:26pm PST












Processing was initiated by Ben Fry and Casey Reas. It is developed by a small team of volunteers.


© Info \

Site hosted by Media Temple!









Wyszukiwarka

Podobne podstrony:
loadpict
PImage loadPixels
PImage loadPixels
loadPixels

więcej podobnych podstron