-
Display image
Hi.. I'm rather new to ASP.Net ... Need some advice... What kind of class/function can i used to diplay my raw image(RGB or YUV) into the web browser. The raw images that i'm going to receive are in continues sequence which can be present as "video"... thanks...
-
Re: Display image
Have an IFRAME that continuously refreshes itself every few seconds with the new image.
-
Re: Display image
Ermm..What is IFRAME ? Can you elaborate more?
-
Re: Display image
An IFRAME is an inline frame. It is basically something like a picture-in-picture feature of televisions. The IFRAME sits on your page and can contain another page. It can also be controlled from the parent page through javascript.
Since you want to present a set of images that you receive continuously, you can first create a page that refreshes itself every 2 or 3 seconds and reloads the image that it is receiving. Next, place this page in an IFRAME on your main page and give it the same dimensions as that of the image. This way, it looks as though you have an image updating itself continuously.
-
Re: Display image