?? jmfexample.java
字號:
package jp.sourceforge.qrcode.example.jmf;// Original JMF(Java Media Framework) video capture example comes from // http://java.about.com/library/weekly/uc_jmfmovie1.htm// By Mr. Gal Ratner // Note that you need JMF runtime to run this application// http://java.sun.com/products/java-media/jmf/2.1.1/download.htmlpublic class jmfexample { public jmfexample() { camDataSource dataSource = new camDataSource(null); dataSource.setMainSource(); dataSource.makeDataSourceCloneable(); dataSource.startProcessing(); mainFrame frame = new mainFrame(dataSource); //frame.setSize(640, 600); frame.setSize(400, 400); frame.setLocationRelativeTo(null); frame.setVisible(true); } public static void main(String[] args) { jmfexample jmf = new jmfexample(); } }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -