( begin auto-generated from image.xml ) Displays images to the screen. The images must be in the sketch's "data" directory to load correctly. Select "Add file..." from the "Sketch" menu to add the image. Processing currently works with GIF, JPEG, and Targa images. The img parameter specifies
(PImage img, float a, float b)
| 12809 | * @see PGraphics#alpha(int) |
| 12810 | */ |
| 12811 | public void image(PImage img, float a, float b) { |
| 12812 | if (recorder != null) recorder.image(img, a, b); |
| 12813 | g.image(img, a, b); |
| 12814 | } |
| 12815 | |
| 12816 | |
| 12817 | /** |