With PHP you'd just use something like this to add the date to the image - I'd have thought asp.net would have similar functionality built in?
header('Content-type: image/jpeg');$jpg_image = imagecreatefromjpeg('webcamnew.jpg');
$white = imagecolorallocate($jpg_image, 255, 255, 255);
$font="c:/windows/fonts/segoeui.ttf";
$text = "UKWCT - ". date ("l, F jS", strtotime('+0 hours', filemtime("webcamnew.jpg")));
imagettftext($jpg_image, 32, 0, 20, 1060, $white, $font, $text);
imagejpeg($jpg_image);
imagedestroy($jpg_image);
(The above is an edited version of the code to date- and time-stamp the webcam image on the UKWCT website).
Originally Posted by: Retron