hi,
I have following methods which I request/trigger over http-request:
def take_photo():
img = camera.take_photo(size = (640,480))
size = 480, 320
image = img.resize(size)
image.save(PICTURE_FILE)
return file(PICTURE_FILE).read()
def screenshot():
img = graphics.screenshot()
size = 480, 320
image = img.resize(size)
img.save(SCREENSHOT_FILE)
return file(SCREENSHOT_FILE).read()
first works fine and I am able to display the taken picture on the html website. BUT the second throws the following error on the phone:
Progr.geschl.:
HttpdMain
KERN-EXEC 3
any ideas why I get this error? THX for help!
regards,
Askin





