Hi,
I have a servlet that returns an image generated with
ImageServer. ¿How can I use OMGraphics over that
image?
I want draw some lines over it but dont know how to
get the graphic context.
Thank you very much!
This is the code that have:
float lat = 40;
float lon = -3;
int escale = 45000000;
LatLonPoint ll = new LatLonPoint(lat,lon);
Projection pp = new Mercator(ll,escale,400,200);
ImageServer iServer = new ImageServer(Props);
SunJPEGFormatter JpegFF = new SunJPEGFormatter();
JpegFF.setImageQuality(1);
iServer.setFormatter(JpegFF);
response.setContentType("image/jpeg");
ServletOutputStream fo = response.getOutputStream();
fo.write( iServer.createImage(pp));
end
______________________________________________
LLama Gratis a cualquier PC del Mundo.
Llamadas a fijos y móviles desde 1 céntimo por minuto.
http://es.voice.yahoo.com
--
[To unsubscribe to this list send an email to "majdart_at_bbn.com"
with the following text in the BODY of the message "unsubscribe openmap-users"]
Received on Wed Feb 22 2006 - 14:43:00 EST