vote up 2 vote down star
1

I have an application hosted in Java on AppEngine and I would like to add a feature where users can get a graphical summary of their data. BufferedImage is listed as not supported on AppEngine. The display process will be simple--a series of small squares in one of two colors.

Regards,

Kent

flag

78% accept rate

3 Answers

vote up 2 vote down check

If you don't find a better solution, you could delegate the graph generation to Google Charts

link|flag
That's what I would do. +1 – Copas May 22 at 15:37
Unfortunately it's not a format that fits nicely into a graph. Perhaps I need to rethink the format in that case... As far as I can tell there isn't a lightweight image library from Java apart from the code that ships in the JRE and I don't want to write a little right now. – Kent Beck May 22 at 17:42
1  
I did change the format to fit a graph. Then I had to use AppEngine's URLFetch to get the image from Google Charts and stream it back to the requester. And it mostly works! Here is the little piece of flair showing the number of tests run through JUnit Max per hour for the last ten hours: junitmax.appspot.com/flair – Kent Beck May 28 at 19:59
Why fetch it using URLFetch? The whole idea of Google Charts is that you can embed a charts URL directly in the page and have it show the user a chart - there's no need for the indirection via your app. – Nick Johnson May 29 at 14:30
vote up 0 vote down

You could try the Python Imaging Library.

link|flag
vote up 0 vote down

Check out the docs on the image service in App Engine. You can probably do what you want with the composition functionality.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.