java利用jmf实现拍照功能

本文介绍如何使用Java Media Framework (JMF) 实现从摄像头捕捉图像并保存为本地图片的功能。具体步骤包括:配置JMF环境、选择摄像头设备、启动摄像头预览、抓取图像帧、将图像保存为未经压缩的jpg格式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

首先到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(); 
  }

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

代码也是很简单:

 

 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)//如果按下的是拍照按钮 
  { 
  FrameGrabbingControl fgc =(FrameGrabbingControl)player.getControl
("javax.media.control.FrameGrabbingControl"); 
  buf = fgc.grabFrame(); // 获取当前祯并存入Buffer类 
  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);//不压缩图像 
  encoder.setJPEGEncodeParam(param); 
  try 
  { 
  encoder.encode(bi); 
  out.close(); 
  } 
  catch (java.io.IOException io) 
  { 
  System.out.println("IOException"); 
  }

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

 
首先到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(); }   接下来就是点击拍照,获取摄像头内的当前图像。   代码也是很简单: 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)//如果按下的是拍照按钮 {  framegrabbingcontrol fgc =(framegrabbingcontrol)  player.getcontrol("javax.media.control.framegrabbingcontrol");  buf = fgc.grabframe(); // 获取当前祯并存入buffer类  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);//不压缩图像 encoder.setjpegencodeparam(param); try {  encoder.encode(bi);  out.close(); } catch (java.io.ioexception io) {  system.out.println("ioexception"); }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值