I'm doing a project in Google App Engine through java
, my problem is that I need to make an image transformation, in which I draw one over the other to then use the Datastore and store it.
Everything was going great until I realized that Google did not support AWT, so the alternative they give is to use Image API but this does not allow me the task of drawing one over another as I could do with Graphics2D, I found a project AWT for appengine through pure JAVA but I could not implement 100 for lack of documentation.
How do I manage awt in appengine or failing to draw images on others with Google's API image?