java文字轉成圖片顯示

來源:互聯網
上載者:User

package net.xdevelop.merge;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.*;
import java.awt.*;
import java.awt.image.*;
import javax.servlet.*;
import javax.servlet.http.*;
import com.sun.image.codec.jpeg.*;
/**
 * @author Liao Xue Feng
 */
public class CreateImageServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException
    {
        response.setContentType("image/jpeg");
        createImage(response.getOutputStream());
    }
    private void createImage(OutputStream out) {
    
     String text =" 測試";
    
        int width = 600;
        int height = text.length()/20*20;
        BufferedImage bi = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        Graphics2D g = bi.createGraphics();
        // set background:
        g.setBackground(Color.GREEN);
        g.clearRect(0, 0, width, height);

        Font mFont = new Font("宋體",Font.PLAIN,20);//預設字型
        g.setColor(new Color(Integer.parseInt("000000",16)));
        g.setFont(mFont);
       
       
       
        int x=3;
        int y=3;
        int count = text.length();
        int i = 0;
        String getone = null;
        while(count >0)
        {
         getone = text.substring(i,i+1);
         if(i % 27 == 0)
         {
          y = y + 20;
          x = 10;
         }
         //g.drawString(Integer.toString(i),x,y);
         g.drawString(getone,x,y);
         x = x + 20;
         i++ ;
         count--;
        }
       
       
       
        // end draw:
        g.dispose();
        bi.flush();
        // encode:
        JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
        JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
        param.setQuality(1.0f, false);
        encoder.setJPEGEncodeParam(param);
        try {
            encoder.encode(bi);
        }
        catch(IOException ioe) {
            ioe.printStackTrace();
        }
    }
}
inde.jsp頁面
<%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
   
    <title>系統測試(From:網路大本營Http://www.QQview.com)</title>
   
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0">   
 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
 <meta http-equiv="description" content="This is my page">
 <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->
  <meta http-equiv="Content-Type" content="text/html; charset=gb2312"><style type="text/css">
<!--
body {
 background-color: #3300FF;
}
-->
</style></head>
 
  <body>
<img src="servlet/CreateImageServlet">
  </body>
</html>

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.