I guess you could download the image, then apply an OCR algorithm to extract any text on the image - which could be interesting or useful.
Then, you could transform the image to base64 - which would be a representation of the image in ASCII - very tasty.
Or even better, transform the image into a in-memory bitmap, and extract the RGB values for each pixel (be careful here, because it could be an 1, 8 or 24 bit image, and also may have an alpha channel). Then you could write out (perhaps in a friendly XML format), then RGB[A] values for each pixel.
Then you could use XMLRPC or SOAP to fire the xml image over a network to a remote client, and then they could reinterpret the image back into its original image format.
Yay !!!
Of course, this would all require a fairly in-depth knowledge of a decent lanaguage like Java, or C/C++, and would not really be achievable in HTML alone.
Though ... maybe IE supports something similar to :
Code:
var image2text = Server.CreateObject("Microsoft.Image2TextObject");
That syntax may require some tweaking though ...
--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software