GifChartServlet.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. ////////////////////////////////////////////////////////////////
  2. // GifChartServlet.java
  3. ////////////////////////////////////////////////////////////////
  4. import com.objectplanet.chart.*;
  5. import Acme.JPM.Encoders.*;
  6. /**
  7.  * This servlet outputs the generated charts as a gif image.
  8.  * 
  9.  * @author meiqi.
  10.  */
  11. public class GifChartServlet extends ChartServlet {
  12. public String encodeChartImage(Image image, OutputStream out) throws IOException {
  13. // create a gif image and send it to the client
  14. GifEncoder encoder = new GifEncoder(image, out);
  15. encoder.encode();
  16. out.flush();
  17. return "image/gif";
  18. }
  19. }