Re: Drawing with Django

2016-11-13 Thread Stephen McDonald
Check out https://github.com/stephenmcd/drawnby - I built it for the 2011 Django Dash (and got 3rd place!). It lets users draw to a canvas element in the browser, and pushes the changes in real-time over web sockets, so multiple users can collaborate on the same image at the same time. It then

Re: Drawing with Django

2016-11-13 Thread Tim Chase
On 2016-11-13 21:55, ludovic coues wrote: > It's barely related to django. > > If all you want is to make annotation, it's fairly easy and you > don't really need canvas and it's mainly javascript, which is > independent from django. > First, display your image. Moreover, this sounds like a

Re: Drawing with Django

2016-11-13 Thread Andrew Stringfield
Yup. I am going to need it. lol I have never done anything like this before. It should be interesting. On Sunday, November 13, 2016 at 3:56:40 PM UTC-5, ludovic coues wrote: > > It's barely related to django. > > If all you want is to make annotation, it's fairly easy and you don't > really

Re: Drawing with Django

2016-11-13 Thread ludovic coues
It's barely related to django. If all you want is to make annotation, it's fairly easy and you don't really need canvas and it's mainly javascript, which is independent from django. First, display your image. Second, get where your user want their annotation. I would do that by listening to click

Drawing with Django

2016-11-13 Thread Andrew Stringfield
hello all, I am interested in being able to draw on a Django view. I have been reading up some on how people draw in Html and it seems that the tag seems to a good start. Apparently I have to do some java scripting as well. What I envision is that I have a background image and then