> I am trying to create and Image and diplay it on an HTML page >without ever writing it to disk. > > >This code currently giveas a broken image link :-( Although if I >output to a file the image displays fine ????) I think the problem is that you are using a PrintWriter instead of an OutputStream. The Writer converts character encodings and will do nasty things to binary data. Jerry Jerry Huxtable http://www.jhlabs.com =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA2D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
