How to save the original RFID image (photo)

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:

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.

Articles in this section

See more