INSTALLED_APPS = (
...
'GAEImages',
...
)
from GAEImages.properties import ReferenceListProperty
class ThingThatNeedsImages(db.model):
mahimagez = ReferenceListProperty(FlashImage)
from flashdrawing.views import FlashDrawingWidget, FlashDrawingField
class Woot(Form):
mahimagez = FlashDrawingField(widget=FlashDrawingWidget)
class Meta:
model = models.ThingThatNeedsImages
Now you'll have some images all up in your app. They're stored in each model as the key, which after the compression and upload to /fupload gets sent back to the client and stored in a list.
everything is handled for you. for more custom implementations, take a walk through the code and it's pretty self-explainitory.
goot luck!