- color_rgb(255, 0, 0) is **red**
- color_rgb(0, 255, 0) is **green**
- color_rgb(255, 0, 255) is **magenta**
- color_rgb(0, 0, 0) is **black**
- color_rgb(255, 255, 255) is **white**
- color_rgb(100, 100, 100) is **gray**
![RGB Diagram](https://processing.org/tutorials/color/imgs/rgb.jpg)
# Images
## Images in graphics.py
- The Zelle graphics library also supports creating, loading, and writing, images to the disk
-
To create an **empty image**, use the constructor
+ `img = Image(center, width, height)`
-
To load an image **from a file**, use the constructor
+ `img = Image(center, filename)`
## Images in graphics.py
- You can get individual pixels of images with:
+
`img.getPixel(x, y)`