直接用java命令列動態產生jpg檔案

來源:互聯網
上載者:User

/**
* jeruGraphics v 1.0
*
* 看到一些動態產生圖象的例子都是servlet完成的,
* 而且程式很長,覺得不是無論從實用性還是可讀性來說都不是太好。
* 這裡給了段代碼,命令列產生圖象檔案。這樣是不是簡單易用些呢?
*
* 建立一個 BufferedImage 對象,將你的“畫”放到這個緩衝裡,
* 再開啟一個檔案,將映像流編碼後輸入這個檔案,這樣就有一個
* jpg檔案出現了,試試吧。。。
* 
* Mender :
* Jeru Liu
* Homepage :
* http://javaren.126.com
* Email: jeru@163.net
*
* 這僅僅是一個範常式序,沒什麼實用,卻極具參考價值。
*
*/
import java.io.*;
import java.util.*;
import com.sun.image.codec.jpeg.*;
import java.awt.image.*;
import java.awt.*;
public class jeruGraphics {
 BufferedImage image;
 // 建立 jpg 檔案到指定路徑下
 public void createJpg(String path) {
  try {
   FileOutputStream fos = new FileOutputStream(path);
   BufferedOutputStream bos = new BufferedOutputStream(fos);
   JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(bos);
   encoder.encode(image);
   bos.close();
  } catch(FileNotFoundException fnfe) {
   System.out.println(fnfe);
  } catch(IOException ioe) {
   System.out.println(ioe);
  }
 } 
 public static void main(String[] args) {
  int width=400, height=200;
  int xLength=300, yLength=150;
  int count=5;
  Vector data=new Vector();
  data.addElement(new Integer(100));
  data.addElement(new Integer(120));
  data.addElement(new Integer(150));
  data.addElement(new Integer(40));
  data.addElement(new Integer(5));
  jeruGraphics jg = new jeruGraphics();
  jg.image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
  Graphics g = jg.image.getGraphics();
  // 畫座標
  g.setColor(Color.white);
  g.fillRect(0, 0, width, height);
  g.setColor(Color.blue);
  g.drawLine(10,height-10,10,height-10-yLength);
  g.drawLine(10,height-10,10+xLength,height-10);
  // 連線
  int yTo;
  int yFrom = ((Integer)(data.elementAt(0))).intValue();
  for (int i=1; i<count; i++) {
   yTo=((Integer)(data.elementAt(i))).intValue();
   g.drawLine(10+i*xLength/count,height-10,10+i*xLength/count,height-15);
g.drawLine(10+(i-1)*xLength/count,yFrom,10+i*xLength/count,yTo);
   yFrom=yTo;
  }
  jg.createJpg("d:\\aaa.jpg");
 }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.