A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
Win a copy of
Arduino in Action
this week in the
General Computing
forum!
A special promo:
Enter your blog post or vote on a blogger to be featured in an upcoming Journal
JavaRanch
»
Java Forums
»
Java
»
Java in General
Author
pls help ....writing image to file
zniter goh
Greenhorn
Joined: Sep 23, 2001
Posts: 29
posted
Apr 29, 2002 01:17:00
0
hi...
if i have a image in a
BufferedImage
how do i save in a file like jpeg,gif....thx
Thomas Smets
Ranch Hand
Joined: Dec 11, 2001
Posts: 111
posted
Apr 29, 2002 13:04:00
0
Give a look at the
Servlets
/
JSP
API's.
especially the com.sun.image.codec.jpeg.JPEGImageEncoder ...
this example shuld be
almost
compilable !
package org.test.servlets; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import com.sun.image.codec.jpeg.*; import java.awt.image.BufferedImage; public class ShowGraphics extends HttpServlet { public void doGet ( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException { PrintWriter out = response.getWriter (); JPEGImageEncoder img = JPEGCodec.createJPEGEncoder (response); BufferedImage bi = new BufferedImage(ImageWidth + 10, ImageHeight, BufferedImage.TYPE_BYTE_INDEXED); graphics = bi.createGraphics(); // Create your image here // g.drawString ("Hello World", 0, 0); // Draw your string here ! img.encode (bi); response.setHeader ("Content-Type", "image/jpeg"); response.flushBuffer (); } }
Other inspire your self from
javaworld
Rgds,
Thomas,
Thomas Smets
Just another developper
I agree. Here's the link:
http://ej-technologies/jprofiler
- if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
subject: pls help ....writing image to file
Similar Threads
Can I embed a hyperlink in a GIF file?
Read file from package
Write image to a file
Jpeg images not proper in MAC
Can I embed a hyperlink in a GIF file?
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter