michael_recchione
Feb 07, 2015 - 04:47
I've been trying the following:
import canvas
from PIL import Image
im = Image.open("./myfile.jpg")
image = im.tobitmap()
canvas.draw_image(image,0,0,600,600)
I keep getting the error on the line calling tobitmp: "ValueError: Not a bitmap"
What am I doing wrong?
Thanks!