I am trying to get image which is in HTML canvas using python. Using jquery i captured image through webcam and stored it in canvas. Now i want to get those images to server side ie.python file.Is anyone have anyidea about it plz help me to do this. I tried to get image to server side using BeautifulSoup.But i need to get captured image which is in canvas. I have tried basic things to get image server side in python using BeautifulSoup.
Basic things:
page = BeautifulSoup(urllib2.urlopen("http://localhost:8086/wins/setimage"))
divTag = page.findAll("div", {"class":"im"})
anyone help me to get canvas image which is captured dynamically.