Captura de Imagens

2 respostas
VinnyJ

Pessoal, tô precisando de uma ajuda..
Estou fazendo um programa para capturar a imagem da Web-Cam..Ele está quase pronto, mas na hora que eu tento salvar a imagem ele dá um erro e não salva nem aparece a imagem salva..
O Código vai aí em baixo:

import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
import javax.media.*;
import javax.media.format.*;
import javax.media.util.*;
import javax.media.control.*;
import javax.media.protocol.*;
import java.util.*;
import java.awt.*;
import java.awt.image.*;
import java.awt.event.*;
import com.sun.image.codec.jpeg.*;
 
public class SwingCapture extends Panel implements
ActionListener
{
public static Player player = null;
public CaptureDeviceInfo di = null;
public MediaLocator ml = null;
public JButton capture = null;
public Buffer buf = null;
public Image img = null;
public VideoFormat vf = null;
public BufferToImage btoi = null;
public ImagePanel imgpanel = null;
 
public SwingCapture()
{
setLayout(new BorderLayout());
setSize(320,550);
 
imgpanel = new ImagePanel();
capture = new JButton("Capture");
capture.addActionListener(this);
 
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);
}
add(capture,BorderLayout.CENTER);
add(imgpanel,BorderLayout.SOUTH);
}
catch (Exception e)
{
e.printStackTrace();
}
}
 
 
 
public static void main(String[] args)
{
Frame f = new Frame("Captura de Imagem");
SwingCapture cf = new SwingCapture();
 
f.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
playerclose();
System.exit(0);}});
 
f.add("Center",cf);
f.pack();
f.setSize(new Dimension(320,550));
f.setVisible(true);
}
 
 
public static void playerclose()
{
player.close();
player.deallocate();
}
 
 
public void actionPerformed(ActionEvent e)
{
JComponent c = (JComponent) e.getSource();
 
if (c == capture)
{
// Grab a frame
FrameGrabbingControl fgc = (FrameGrabbingControl)
player.getControl("javax.media.control.FrameGrabbingConrol");
buf = fgc.grabFrame();
 
// Convert it to an image
btoi = new
BufferToImage((VideoFormat)buf.getFormat());
img = btoi.createImage(buf);
 
// show the image
imgpanel.setImage(img);
 
// save image
saveJPG(img,"c:\\test.jpg");
}
}
 
class ImagePanel extends Panel
{
public Image myimg = null;
 
public ImagePanel()
{
setLayout(null);
setSize(320,240);
}
 
public void setImage(Image img)
{
this.myimg = img;
repaint();
}
 
public void paint(Graphics g)
{
if (myimg != null)
{
g.drawImage(myimg, 0, 0, this);
}
}
}
 
 
public static void saveJPG(Image img, String s)
{
BufferedImage bi = new
BufferedImage(img.getWidth(null), img.getHeight(null),
BufferedImage.TYPE_INT_RGB);
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(0.5f,false);
encoder.setJPEGEncodeParam(param);
 
try
{
encoder.encode(bi);
out.close();
}
catch (java.io.IOException io)
{
System.out.println("IOException");
}
}
 
}

Sempre que executo o código e clico em capturar aparece o seguinte erro:

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
        at SwingCapture.actionPerformed(SwingCapture.java:96)
        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
        at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Sour
ce)
        at java.awt.Component.processMouseEvent(Unknown Source)
        at javax.swing.JComponent.processMouseEvent(Unknown Source)
        at java.awt.Component.processEvent(Unknown Source)
        at java.awt.Container.processEvent(Unknown Source)
        at java.awt.Component.dispatchEventImpl(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
        at java.awt.Container.dispatchEventImpl(Unknown Source)
        at java.awt.Component.dispatchEvent(Unknown Source)
        at java.awt.EventQueue.dispatchEvent(Unknown Source)
        at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
        at java.awt.EventDispatchThread.run(Unknown Source)

Desde já..Valws..

2 Respostas

T

Acho que é “Con[color=red]t[/color]rol”, não “Conrol”.

VinnyJ

RSRSRSR… :smiley:
Não acredito que tive tanta dor de cabeça por uma besteira dessas…
Valws de mais cara…

Criado 26 de setembro de 2007
Ultima resposta 26 de set. de 2007
Respostas 2
Participantes 2