This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hello every body. My server is linux server(doesn't have x windows)My servlet needs to create an image(offscreen buffered image) and draw images on it reading from the files on the server. but drawImage always returns false inspite of using mediatracker. and the images from file are never drawn. this is the code can some one please help me. ******************* s="/home/admin/davs/bug.gif"; Toolkit toolkit = Toolkit.getDefaultToolkit(); ImageIcon icon = new ImageIcon(s); img = icon.getImage(); Container c=new Container(); MediaTracker mt=new MediaTracker(c); mt.addImage(img ,0); try{ mt.waitForAll(); }catch(Exception ex){ex.printStackTrace();} bool=g.drawImage(img,30, 30,c); ******************* how ever i try with or with out mediatracker i always get bool as false. can some one plaesae help me......... thanks in advance [ September 23, 2002: Message edited by: sunitha singh ]
chanoch wiggers
Author
Ranch Hand
Joined: May 24, 2001
Posts: 245
posted
0
i'm pretty sure you have to have an x server running, even if it is in the background. YOu dont have to run a client or anything but there must be a server.
chanoch<p><a href="http://www.amazon.com/exec/obidos/ASIN/1861007736/" target="_blank" rel="nofollow">Author of Professional Apache Tomcat</a></p>