add getImage() back to PImage (issue #1223)

This commit is contained in:
benfry
2012-09-10 18:16:09 +00:00
parent 35a533c845
commit ea9dedef16
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -14437,6 +14437,14 @@ public class PApplet extends Applet
}
public Image getImage() {
return g.getImage();
}
/**
* Returns a native BufferedImage from this PImage.
*/
public Object getNative() {
return g.getNative();
}