I'm just curious, is it possible to turn a greenfoot game into a normal java game one can download from the internet? I want to share my game with a few of my friends who don't have the greenfoot software


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | java.lang.OutOfMemoryError: Java heap space at java.awt.image.DataBufferInt.<init>(DataBufferInt.java: 75 ) at java.awt.image.Raster.createPackedRaster(Raster.java: 467 ) at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java: 1032 ) at java.awt.image.BufferedImage.<init>(BufferedImage.java: 351 ) at GifImage$GifDecoder.readImage(GifImage.java: 853 ) at GifImage$GifDecoder.readContents(GifImage.java: 731 ) at GifImage$GifDecoder.read(GifImage.java: 439 ) at GifImage$GifDecoder.read(GifImage.java: 504 ) at GifImage.loadImages(GifImage.java: 115 ) at GifImage.<init>(GifImage.java: 48 ) at Space.<init>(Space.java: 17 ) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java: 62 ) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java: 45 ) at java.lang.reflect.Constructor.newInstance(Constructor.java: 423 ) at greenfoot.core.Simulation.newInstance(Simulation.java: 617 ) at greenfoot.localdebugger.LocalDebugger$QueuedInstantiation.run(LocalDebugger.java: 155 ) at greenfoot.core.Simulation.runQueuedTasks(Simulation.java: 502 ) at greenfoot.core.Simulation.maybePause(Simulation.java: 305 ) at greenfoot.core.Simulation.runContent(Simulation.java: 218 ) at greenfoot.core.Simulation.run(Simulation.java: 211 ) |