⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jmfexample.java

📁 QR code是日本人开发的现在很流行的国际通用的二维条形码
💻 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 + -