I am writing code that works in Google App Engine (Java). What I'm trying to do is enlarge an existing image by adding text. GAE does not have text processing in ImageService. Somebody knows?
I want my code to look something like this:
...
byte[] pageData = readImage("images/page.png");
Image pageImage = ImagesServiceFactory.makeImage(pageData);
...
return pageImage;
source
share