CustomData and timestamps in JPEGVideoSource SDK

Hi

I am working on a plug in and needs some help.

1- In XProtect smart client 2014 I can check Include timestamps in Export bookmark form, but I can’t find such property in JPEGVideoSource object using MIP SDK. How can I add this property to my exported stillimages ?

2- I looked in the sample code for CustomeData but didn’t find any info, it is an object type, can someone give me some example on how to use it ?

I understand that you want to put the timestamp info as overlaid text into the image. Unfortunately, the JPEGVideoSource class does not support overlay functions.

What you could do: Use standard C# “Bitmap” and “Graphics” objects, initialize it with the video data that you already have, and then use methods like “Graphics.DrawString()” and “Bitmap.Save()” to add the timestamp and save the image.

Hope this helps.