Capture and return the current screen buffer
| <vizcapture>.screenBuffer( | |
| flip = False | # Keyword argument |
)
flip = False
If True, the returned data will start from the upper left corner of the screen. Otherwise the data will start from the lower left corner.
This command will capture the current contents of the screen buffer and return the raw data. The data is returned as a string, where each character represents a single color component of a pixel (i.e. r, g, or b). The color data is in BGR format.
(width,height,data)