Hi,. I am currently working on my project webcasting, my concept is to capture the desktop of the host computer as an image/jpeg file and save it to the database, by having a common database VB.NET and ASP.NET can connect. And lastly, get the image/images from the database and render it to ASP.NET.
1.) VB.NET -> capture image 2.) MYSQL -> write image as BLOB 3.) ASP.NET-> binary write to web page
My problem is that the pictures that is rendered on to ASP.NET is choppy and flickery, do you know any way or method that i can eliminate these problem and provide a smoother picture animation as a result without sacrificing equipment performance.?????
I would really appreciate any tip or suggestion.,. (^_^).,
here is the way i output pictures on the webpage:
If dr.HasRows Then
dr.Read()
Response.ContentType = "image/jpeg" 'gets or sets the type of output stream
Response.BinaryWrite(dr.Item("file")) 'writes a stream of binary characters to the http output stream
Else
I set 1 second to refresh the page, but the more I refresh the page, the more flicker i get.