Is there some way to get the behavior of google.colab.output.eval_js
in a Jupyter Notebook? I have a bit of Code that uses IPython.display
to let the user draw an image. When a button is pressed, JS saves the content of the image as data
and I then use data = eval_js("data")
in Python to pull that content into Python. I am trying to replicate that behavior in a Jupyter Notebook. I put the full Code below.
from IPython.display import HTML, Image
from google.colab.output import eval_js
canvas_html = """
<canvas width=%d height=%d style="background-color:rgb(240,240,240)"=></canvas>
<button>Guess Number</button>
<script>
var canvas = document.querySelector('canvas')
var ctx = canvas.getContext('2d')
ctx.lineWidth = %d
var button = document.querySelector('button')
var mouse = {x: 0, y: 0}
canvas.addEventListener('mousemove', function(e) {
mouse.x = e.pageX - this.offsetLeft
mouse.y = e.pageY - this.offsetTop
})
canvas.onmousedown = ()=>{
ctx.beginPath()
ctx.moveTo(mouse.x, mouse.y)
canvas.addEventListener('mousemove', onPaint)
}
canvas.onmouseup = ()=>{
canvas.removeEventListener('mousemove', onPaint)
}
var onPaint = ()=>{
ctx.lineTo(mouse.x, mouse.y)
ctx.stroke()
}
var data = new Promise(resolve=>{
button.onclick = ()=>{
resolve(canvas.toDataURL('image/png'))
}
})
</script>
"""
def draw(filename='drawing.png', w=280, h=280, line_width=20):
display(HTML(canvas_html % (w, h, line_width)))
data = eval_js("data")
# do sth with the variable in python ...