程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> 用java繪制google中文名稱“谷歌”

用java繪制google中文名稱“谷歌”

編輯:JAVA編程入門知識

  Google發布中文名谷歌,我們來用Java繪制google中文名稱“谷歌”,java與google,魚與熊掌我兼得了。 *_*
  
  

package ccidnet;
  import java.io.*;
  import java.awt.*;
  import java.awt.image.*;
  import com.sun.image.codec.jpeg.*;
  class google {
  public static void main(String[] args) {
  BufferedImage bufferedImage = null;
  Graphics2D graphics2D = null;
  int widths = 100;
  int heights = 100;
  try {
  bufferedImage = new BufferedImage(widths, heights,
  BufferedImage.TYPE_INT_RGB);
  graphics2D = (Graphics2D) bufferedImage.getGraphics();
  graphics2D.setBackground(java.awt.Color.black);
  graphics2D.setColor(java.awt.Color.green);
  Font font=new Font("",Font.PLAIN,20);
  graphics2D.setFont(font);
  graphics2D.drawString("谷歌", 30, 50);
  font=new Font("",Font.PLAIN,10);
  graphics2D.setFont(font);
  graphics2D.drawString("by 神燈", 60, 85);
  OutputStream outPutStream = new FileOutputStream("c:google.jpg");
  JPEGImageEncoder encoder = JPEGCodec
  .createJPEGEncoder(outPutStream);
  encoder.encode(bufferedImage);
  } catch (Exception e) {
  e.getMessage();
  } finally {
  if (graphics2D != null) {
  graphics2D.dispose();
  }
  }
  }
  }

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved