快速业务通道

java利用jmf实现拍照功能 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-14

java利用jmf实现拍照功能

时间:2011-10-13 Java研究组织 changzheng

我把程序分为两种,有趣的和无趣的,最近做了几个有趣的项目,其中一个,应当就算是摄像头拍照 程序了。用于现场拍照,生成照片,主要用到Java Media Framework(JMF)。

首先到SUN下载最新的JMF,然后安装。http://java.sun.com/products/java- media/jmf/index.jsp

然后,说一下需求

1.用摄像头拍照

2.在文本框输入文件名

3.按下拍照按钮,获取摄像头内的图像

4.在拍下的照片上有一红框截取固定大小的照片。

5.保存为本地图像为jpg格式,不得压缩画质

技术关键,相信也是大家最感兴趣的部分也就是如何让一个摄像头工作,并拍下一张照片了。

利用JMF,代码很简单:

//利用这三个类分别获取摄像头驱动,和获取摄像头内的图像流,获取到的图像流是一个Swing的 Component组件类

public static Player player = null; private CaptureDeviceInfo  di = null; private MediaLocator ml = null; String str1 = "vfw:Logitech USB  Video Camera:0"; String str2 =  "vfw:Microsoft WDM Image Capture (Win32):0"; di =  CaptureDeviceManager.getDevice(str2); ml = di.getLocator(); try { player =  Manager.createRealizedPlayer (ml); player.start(); Component comp; if ((comp = player.getVisualComponent())  != null) { add(comp, BorderLayout.NORTH); } } catch (Exception e) { e.printStackTrace (); }

java利用jmf实现拍照功能(2)

时间:2011-10-13 Java研究组织 changzheng

接下来就是点击拍照,获取摄像头内的当前图像。

代码也是很简单:

 private JButton capture; private Buffer buf = null; private  BufferToImage btoi = null; private ImagePanel  imgpanel = null; private Image img = null; private ImagePanel imgpanel =  null; JComponent c = (JComponent)  e.getSource(); if (c == capture)//如果按下的是拍照按钮  http://www.5a520.cn { FrameGrabbingControl fgc = (FrameGrabbingControl)player.getControl ("javax.media.control.FrameGrabbingControl"); buf = fgc.grabFrame();  // 获取当前祯并存入Buffer类 http://www.bt285.cn btoi = new  BufferToImage((VideoFormat) buf.getFormat()); img = btoi.createImage (buf); // show the image imgpanel.setImage(img); }

保存图像的就不多说了,以下为示例代码

 BufferedImage bi = (BufferedImage) createImage(imgWidth,  imgHeight); Graphics2D g2 = bi.createGraphics(); g2.drawImage(img,  null, null); FileOutputStream out = null; try { out = new  FileOutputStream(s); } catch (java.io.FileNotFoundException io) { System.out.println("File Not  Found"); } JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder (out); JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam (bi); param.setQuality(1f, false);//不压缩图像  http://www.bt285.cn encoder.setJPEGEncodeParam(param); try { encoder.encode (bi); out.close(); } catch (java.io.IOException io) { System.out.println ("IOException"); }

已经申请将JWebCam建立为一个开源项目,放到GRO,大家发挥自己的想象力加入自己的代码吧,比如 拍摄视频,添加图像处理功能,等等

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号