免费视频淫片aa毛片_日韩高清在线亚洲专区vr_日韩大片免费观看视频播放_亚洲欧美国产精品完整版

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開(kāi)通VIP
java 漢字轉(zhuǎn)圖形處理

方法1:
          BufferedImage   bi   =   null;
          Graphics2D   g2   =   null;

          int   widths   =   100;
          int   heights   =   40;
          try{
          bi   =   new   BufferedImage(widths,   heights,BufferedImage.TYPE_INT_RGB);
          //bi.setRGB(255,255,255);
          g2   =   (Graphics2D)   bi.getGraphics();
          g2.setBackground(java.awt.Color.white);
          //g2.setColor(java.awt.Color.black);
          g2.drawString( "tidekong ",5,5);
          }finally{
              if   (g2!=null){
                  g2.dispose();
              }
          }

          OutputStream   outPutStream   =   new   FileOutputStream( "c:\\tide.jpg ");
          JPEGImageEncoder   encoder   =   JPEGCodec.createJPEGEncoder(outPutStream);
          encoder.encode(bi);


方法 2:

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 =" 測(cè)試";
    
        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);//默認(rèn)字體
        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頁(yè)面:

 <%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
   
    <title>系統(tǒng)測(cè)試(From:網(wǎng)絡(luò)大本營(yíng)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>
本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)。
打開(kāi)APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
Java實(shí)現(xiàn)網(wǎng)頁(yè)截圖技術(shù),根據(jù)URL得到網(wǎng)頁(yè)快照(已測(cè)試)
Java驗(yàn)證碼
使用Servlet動(dòng)態(tài)生成圖片
java實(shí)現(xiàn)上傳圖片后的縮放處理
java圖片縮放剪切處理
java圖片壓縮
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服