Difference between revisions of "Mediamanager:takeScreenshot"
From GiderosMobile
(first attempt at creating methods for media plugin) |
|||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | + | '''Available since:''' Gideros 2016.1<br/> | |
| − | ''' | + | '''Class:''' [[Media]]<br/> |
| − | ''' | ||
| − | === | + | === Description === |
Captures a screenshot of the app. | Captures a screenshot of the app. | ||
| − | < | + | <syntaxhighlight lang="lua"> |
(string) = mediamanager:takeScreenshot() | (string) = mediamanager:takeScreenshot() | ||
| − | </ | + | </syntaxhighlight> |
| − | + | '''ANDROID SDK 29+ HAS SOME BREAKING CHANGES, THIS FUNCTION WILL NOT WORK AS EXPECTED :-(''' | |
| − | ''' | ||
| − | < | + | === Return values === |
| + | '''Returns''' (string) path to the screenshot<br/> | ||
| + | |||
| + | === Example === | ||
| + | <syntaxhighlight lang="lua"> | ||
| + | require "media" | ||
| + | |||
| + | -- take screenshot (no permission needed) | ||
| + | mediamanager:takeScreenshot() | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | {{Media}} | ||
Latest revision as of 03:30, 21 December 2024
Available since: Gideros 2016.1
Class: Media
Description
Captures a screenshot of the app.
(string) = mediamanager:takeScreenshot()
ANDROID SDK 29+ HAS SOME BREAKING CHANGES, THIS FUNCTION WILL NOT WORK AS EXPECTED :-(
Return values
Returns (string) path to the screenshot
Example
require "media"
-- take screenshot (no permission needed)
mediamanager:takeScreenshot()
- X Media:copy
- X Media:crop
- X Media:drawFill
- X Media:drawImage
- X Media:drawLine
- X Media:drawText
- X Media:flipHorizontal
- X Media:flipVertical
- X Media:floodFill
- X Media:getHeight
- X Media:getPath
- X Media:getPixel
- X Media:getRotation
- X Media:getWidth
- X Media:resize
- X Media:resizeHeight
- X Media:resizeWidth
- X Media:save
- X Media:setPixel
- X Media:setRotation
- X Media:trim