To save the original RFID image (photo) you need to get it from the COM object.
See CheckRFIDResultXML() or CheckRFIDResultJSON() methods,
with eRFID_ResultType.RFID_ResultType_RFID_OriginalGraphics.
As an example, here is a code sample on C#.
Please add to your source code:
i = m_RegulaReader.CheckRFIDResult((int)eRFID_ResultType.RFID_ResultType_RFID_OriginalGraphics, 0, "");
if (i > 0)
{
var originalGraphicXml = m_RegulaReader.CheckRFIDResultXML((int)eRFID_ResultType.RFID_ResultType_RFID_OriginalGraphics);
if (!String.IsNullOrEmpty(originalGraphicXml))
{
File.WriteAllText("rfidOriginal.xml", originalGraphicXml);
}
}
As a result, you will get rfidOriginal.xml:
Comments
Article is closed for comments.