Archived:How to take a screenshot
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
Tested with
Devices(s): Nokia N95, Nokia E90
Compatibility
Platform(s): S60 2nd Edition, S60 3rd Edition
Article
Keywords: graphics
Created: cyke64
(15 Mar 2007)
Last edited: hamishwillee
(31 May 2013)
Contents |
Overview
This snippet shows how to take a screenshot in Python.
Preconditions
Note: The Image object method save is not available for S60 1st Edition.
Images can be saved in either JPEG or PNG format.
Source code
import graphics
#Take the screenshot
img = graphics.screenshot()
#Save it to the specified path
img.save(u"C:\\screenshot.jpg")
Postconditions
A screenshot is taken and saved to the specified path.


(no comments yet)