I'm trying to figure out how to capture the output of a webcam from a networked PC and put the images on a web page hosted on a locally networked server. The webcam acts as a jpeg image server with a local IP address (192.168.0.0) that is invisible from the internet.
The imagejpeg() function seems the way to go. This can output a raw image stream. The input to the function is an image resource from the imagecreate() function.
Another way to access the image source may be via the fopen function which can have a url as it's parameter.
Can anyone please explain how to capture the jpeg image from an IP address of an image server and present it as an image to a web page?
Thanks in advance,
Andy