Я использую Digital Persona U.Are.U 4500, и я установил SDK для отпечатков пальцев с аппаратного обеспечения. Я использую Java API и смог запустить примеры кодов на Java. Прямо сейчас я пытаюсь сохранить данные отпечатков пальцев в виде изображения. Есть ли способ сохранить его как изображение, любой формат, если я могу сохранить его на своем компьютере и просмотреть как изображение. Спасибо!
Я понял, что evt.capture_result.image имеет тип данных Fid. Я думаю, что это может помочь мне, но я не знаю, как преобразовать файл Fid в байты []. Или я ошибаюсь по этому поводу?
Это класс захвата, я надеялся немного изменить код здесь.
package fp;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JPanel;
import com.digitalpersona.javapos.services.biometrics.CaptureThread;
import com.digitalpersona.uareu.*;
import com.digitalpersona.uareu.Fid.Fiv;
import static sun.security.krb5.Confounder.bytes;
public class Capture extends JPanel implements ActionListener {
private static final long serialVersionUID = 2;
private static final String ACT_BACK = "back";
private JDialog m_dlgParent;
private CaptureThread m_capture;
private Reader m_reader;
private ImagePanel m_image;
private Fid m_fid; //fid
private Fiv m_fiv; //fiv
private boolean m_bStreaming;
private Capture(Reader reader, boolean bStreaming){
m_reader = reader;
m_bStreaming = bStreaming;
m_capture = new CaptureThread(m_reader, m_bStreaming, Fid.Format.ANSI_381_2004, Reader.ImageProcessing.IMG_PROC_DEFAULT);
final int vgap = 5;
BoxLayout layout = new BoxLayout(this, BoxLayout.Y_AXIS);
setLayout(layout);
m_image = new ImagePanel();
Dimension dm = new Dimension(380, 380);
m_image.setPreferredSize(dm);
add(m_image);
add(Box.createVerticalStrut(vgap));
JButton btnBack = new JButton("Back");
btnBack.setActionCommand(ACT_BACK);
btnBack.addActionListener(this);
add(btnBack);
add(Box.createVerticalStrut(vgap));}
private void StartCaptureThread(){
m_capture = new CaptureThread(m_reader, m_bStreaming, Fid.Format.ANSI_381_2004, Reader.ImageProcessing.IMG_PROC_DEFAULT);
m_capture.start(this);
}
private void StopCaptureThread(){
if(null != m_capture) m_capture.cancel();
}
private void WaitForCaptureThread(){
if(null != m_capture) m_capture.join(1000);
}
public void actionPerformed(ActionEvent e){
if(e.getActionCommand().equals(ACT_BACK)){
//event from "back" button
//cancel capture
StopCaptureThread();
}
else if(e.getActionCommand().equals(CaptureThread.ACT_CAPTURE)){
//event from capture thread
CaptureThread.CaptureEvent evt = (CaptureThread.CaptureEvent)e;
boolean bCanceled = false;
if(null != evt.capture_result){
if(null != evt.capture_result.image && Reader.CaptureQuality.GOOD == evt.capture_result.quality){
//display image
m_image.showImage(evt.capture_result.image);
}
else if(Reader.CaptureQuality.CANCELED == evt.capture_result.quality){
//capture or streaming was canceled, just quit
bCanceled = true;
}
else{
//bad quality
MessageBox.BadQuality(evt.capture_result.quality);
}
}
else if(null != evt.exception){
//exception during capture
MessageBox.DpError("Capture", evt.exception);
bCanceled = true;
}
else if(null != evt.reader_status){
MessageBox.BadStatus(evt.reader_status);
bCanceled = true;
}
if(!bCanceled){
if(!m_bStreaming){
//restart capture thread
WaitForCaptureThread();
StartCaptureThread();
}
}
else{
//destroy dialog
m_dlgParent.setVisible(false);
}
}
}
private void doModal(JDialog dlgParent){
//open reader
try{
m_reader.Open(Reader.Priority.COOPERATIVE);
}
catch(UareUException e){ MessageBox.DpError("Reader.Open()", e); }
boolean bOk = true;
if(m_bStreaming){
//check if streaming supported
Reader.Capabilities rc = m_reader.GetCapabilities();
if(!rc.can_stream){
MessageBox.Warning("This reader does not support streaming");
bOk = false;
}
}
if(bOk){
//start capture thread
StartCaptureThread();
//bring up modal dialog
m_dlgParent = dlgParent;
m_dlgParent.setContentPane(this);
m_dlgParent.pack();
m_dlgParent.setLocationRelativeTo(null);
m_dlgParent.toFront();
m_dlgParent.setVisible(true);
m_dlgParent.dispose();
//cancel capture
StopCaptureThread();
//wait for capture thread to finish
WaitForCaptureThread();
}
//close reader
try{
m_reader.Close();
}
catch(UareUException e){ MessageBox.DpError("Reader.Close()", e); }
}
public static void Run(Reader reader, boolean bStreaming){
JDialog dlg = new JDialog((JDialog)null, "Put your finger on the reader", true);
Capture capture = new Capture(reader, bStreaming);
capture.doModal(dlg);
}
}