|
Bitwig Studio Control Surface API
4.0.1
|
Inheritance diagram for Bitmap:Public Member Functions | |
| int | getWidth () |
| int | getHeight () |
| BitmapFormat | getFormat () |
| MemoryBlock | getMemoryBlock () |
| void | render (Renderer renderer) |
| void | showDisplayWindow () |
| void | setDisplayWindowTitle (String title) |
| void | saveToDiskAsPPM (String path) |
Represents a bitmap image which can be painted via render(Renderer).
Definition at line 10 of file Bitmap.java.
| int getHeight | ( | ) |
Returns the height
Implements Image.
| int getWidth | ( | ) |
Returns the width
Implements Image.
| void render | ( | Renderer | renderer | ) |
Call this method to start painting the bitmap. This method will take care of disposing allocated patterns during the rendering.
| void saveToDiskAsPPM | ( | String | path | ) |
Saves the image as a PPM file.
| path | the location of the target file. |
| void setDisplayWindowTitle | ( | String | title | ) |
Updates the display window title.
| void showDisplayWindow | ( | ) |
Call this method to show a window which displays the bitmap. You should see this as a debug utility rather than a Control Surface API feature.