Reputation: 76
I'm working with Topaz signature capture system,SigPlusNet. The SDK has a method for storing the captured signature into a long ASCII string.
'Method 1--storing as an ASCII string value
strSig = SigPlusNET1.GetSigString()
I've taken the stored value and put it into my database successfully as dbtype(text)
DoData.InsertData("insert into images(imagename, image) values ('DansFirst','" & strSig & "')")
I can't seem to find a way to make it back into an image.
Upvotes: 0
Views: 125